Tumblr
Pinterest

Binary Decimal Hex Converter

Convert those base numbers

decimal, binary and hex 0 to 16 list

Decimal Binary Hexadecimal
0 00000000 0x0
1 00000001 0x1
2 00000010 0x2
3 00000011 0x3
4 00000100 0x4
5 00000101 0x5
6 00000110 0x6
7 00000111 0x7
8 00001000 0x8
9 00001001 0x9
10 00001010 0xa
11 00001011 0xb
12 00001100 0xc
13 00001101 0xd
14 00001110 0xe
15 00001111 0xf
16 00010000 0x10

Converting base numbers with JavaScript

This web page uses JavaScript for converting base numbers. JavaScript provides parseInt and toString methods for those purpose.

toString's first param is for converting decimal number to specific base number.

var i = 334;
console.log(i.toString(16)); // display 14e

parseInt's second param is for converting specific base number to decimal.

console.log(parseInt('101001110',2)); // display 334

But parseFloat doesnt provide param for converting base number. You have to write some script If you want to convert float from any base number.

I use those script that is in Stackoverflow.

function parseFloat(string, radix) {
  string = string.split(/\./);
  if (string[0] == '') {
    string[0] = "0";
  }
  if (string.length > 1 && string[1] != '') {
    var fractionLength = string[1].length;
    string[1] = parseInt(string[1], radix);
    string[1] *= Math.pow(radix, -fractionLength);
    return parseInt(string[0], radix) + string[1];
  }
  return parseInt(string[0], radix);
}

numbers - Converting hexadecimal to float in javascript - Stack Overflow

This function provide param for converting base number like parseInt.

console.log(parseFloat('21.666666666666', 16)); // display 33.4

Tool List

Network, Internet

Check IP Address

You can check your IP Address, Remort Host, Country and City. Also can check those infomation from target IP Address.

Check User Agent

display your browser's User Agent and information

Math Tools

Binary Decimal Hex Converter

Convert those base numbers

Text Tools

Text Length Counter Tool

This tool counts the number of characters, lines, words, and the difference to the target number of characters in real time. It doesnt send any date to the server, making it safe to use.

Text Diff

This is a tool to check the differences between two texts in an easy-to-understand manner. It can jump to the location of differences, search, and merge differences. Optionally, you can ignore whitespace, capitalization, etc.

Password Generator

This tool generates random password. Character types and lengths can be specified, and a large number of passwords can be generated at once to use a string of your choice as a password.

DateTime Tools

Converting JP Year(Gengo), Common Era and Thai Buddist Era

Converting JP Year(Gengo), Common Era(A.D), Thai Buddist Era, and Earthly Branches. Also display ages.

UNIX time Datetime Converter

Converting UNIX time and Datetime each other. This converter automatically recognize UNIX time or Datetime whatever you input.

List of Countries

Couontry and code List

display country list and it's codes

Country Name List With Multi Languages

Display country names in multi languages

Twitter Tools

Retrieving Twitter Status API Result

Retrieving individual tweet with Twitter API and display its formatted JSON data

Twitter Video Downloader

This tool generates video urls from tweet. You can download video from these urls directly.

Twitter Egosearching Tool

This tool is for searching in twitter more powerful.

Image Tools

Image EXIF Reader

Read EXIF from your image

Fake Video Image Generator

Fake Video Image Generator

Chart Generator

Day Schedule Generator

This tool can generate a day schedule/activities as a pie chart.

Financial Pie Chart Generator

This tool can generate a financial graph as a pie chart.

Tools for Gamers

Chicken Dinner Generator

generate chicken dinner screen like PUBG result with your image.

In Game Money Exchanger

English version is under developing

LoL Multilingual Database

List of champion name in League of Legends with multilingual. it may help to play in japanese and taiwan server

Title

GearBest Sales and Coupons

Sales and Coupons information for Smartphones, Tablets and Laptops at GearBest.com!