๐ŸŒ
VisibleEarth
h-schmidt.net โ€บ FloatConverter โ€บ IEEE754.html
IEEE-754 Floating Point Converter
This page allows you to convert between the decimal representation of a number (like "1.02") and the binary format used by all modern CPUs (a.k.a. "IEEE 754 floating point").
๐ŸŒ
Numeral-systems
numeral-systems.com โ€บ ieee-754-converter
IEEE-754 floating point numbers converter
This calculator can be used to convert decimal numbers to a binary floating point number in IEEE-754 format or vice versa.
People also ask

How do I convert a number to floating-point?

To convert a decimal number to a floating-point representation, follow these steps:

  1. Convert the entire number to binary and then normalize it, i.e. write it in scientific notation using base 2.
  2. Truncate the fraction after the decimal point to the allowable fraction length.
  3. Extract the sign, exponent, and fraction segments.

Refer to the IEEE754 standard for more detailed instructions.

๐ŸŒ
omnicalculator.com
omnicalculator.com โ€บ other โ€บ floating-point
Floating-Point Calculator
Why do we use floating-point numbers?

The IEEE754 floating-point format standard enables efficient storage and processing of numbers in computers.

  • From a hardware perspective, many simplifications of floating-point operations can be made to significantly speed up arithmetic, thanks to the IEEE754 standard's specifications.

  • For software, floats are very precise and typically lose a few millionths (if not less) per operation, which enables high-precision scientific and engineering applications.

๐ŸŒ
omnicalculator.com
omnicalculator.com โ€บ other โ€บ floating-point
Floating-Point Calculator
What is an IEEE754 floating-point number?

In computing, a floating-point number is a data format used to store fractional numbers in a digital machine. A floating-point number is represented by a series of bits (1s and 0s). Computers perform mathematical operations on these bits directly instead of how a human would do the math. When a human wants to read the floating-point number, a complex formula reconstructs the bits into the decimal system.

๐ŸŒ
omnicalculator.com
omnicalculator.com โ€บ other โ€บ floating-point
Floating-Point Calculator
๐ŸŒ
Observable
observablehq.com โ€บ @benaubin โ€บ floating-point
Floating Point Calculator / Ben Aubin | Observable
April 28, 2023 - Calculate IEEE-754 style floating point numbers with arbitrary precision (`p`) and range (`q`). Enter as decimal aproximation, hex, or click to modify the binary digits Deconstructed Representation bias/min/max implementation details
๐ŸŒ
Evanau
flop.evanau.dev
IEEE 754-Style Floating-Point Converter
Floating-point converter for FP32, FP64, FP16, bfloat16, TensorFloat-32 and arbitrary IEEE 754-style floating-point types.
๐ŸŒ
Evanw
evanw.github.io โ€บ float-toy
Float Toy
Click on a cell below to toggle bit values, or edit the hex or decimal values directly. Use this to build intuition for the IEEE floating-point format.
๐ŸŒ
Binary Convert
binaryconvert.com โ€บ convert_float.html
Float (IEEE754 Single precision 32-bit) Converter
Online binary converter. Supports all types of variables, including single and double precision IEEE754 numbers
Find elsewhere
๐ŸŒ
Baseconvert
baseconvert.com โ€บ ieee-754-floating-point
IEEE 754 Floating Point Converter - Base Convert
Online number base converter for binary, hexadecimal, octal, decimal, roman numerals, balanced ternary, negabinary, factorial, bijective, and any radix. Supports high precision and fractional values.
๐ŸŒ
Exploring Binary
exploringbinary.com โ€บ home โ€บ decimal to floating-point converter
Decimal to Floating-Point Converter - Exploring Binary
June 1, 2018 - A decimal to IEEE 754 binary floating-point converter, which produces correctly rounded single-precision and double-precision conversions.
๐ŸŒ
Omni Calculator
omnicalculator.com โ€บ other โ€บ floating-point
Floating-Point Calculator
August 7, 2025 - The floating-point calculator is here to help you understand the IEEE754 standard for the floating-point format. It acts as a converter for floating-point numbers โ€” it converts 32-bit floats and 64-bit floats from binary representations to ...
๐ŸŒ
Weitz
weitz.de โ€บ ieee
IEEE 754 Calculator
This is a little calculator intended to help you understand the IEEE 754 standard for floating-point computation. It is implemented in JavaScript (using the amazing VanillaJS framework) and should work with recent desktop versions of Firefox and Chrome. I haven't tested with other browsers.
๐ŸŒ
Christophervickery
christophervickery.com โ€บ IEEE-754 โ€บ IEEE-754.old โ€บ 32bit.html
IEEE-754 Floating-Point Conversion from 32-bit Hexadecimal to Floating-Point
From 32-bit Hexadecimal Representation To Decimal Floating-Point Along with the Equivalent 64-bit Hexadecimal and Binary Patterns ยท [ Convert IEEE-754 64-bit Hexadecimal Representations to Decimal Floating-Point Numbers. ] [ Convert Decimal Floating-Point Numbers to IEEE-754 Hexadecimal Representations.
๐ŸŒ
Stanford University
web.stanford.edu โ€บ class โ€บ cs107 โ€บ float
CS107 Floating point converter
Floating point converter ยท This web page converts between binary and decimal numbers. For example, it will convert a binary number in the form of yyy.xxxxxxxxxxxxxxxxxxxxxxx to its decimal equivalent. E.g.: 1.011b = 1 x 20 + 0 x 2-1 + 1 x 2-2 + 1 x 2-3 = 1.375d ยท
๐ŸŒ
MDN Web Docs
developer.mozilla.org โ€บ en-US โ€บ docs โ€บ Web โ€บ JavaScript โ€บ Reference โ€บ Global_Objects โ€บ Number
Number - JavaScript | MDN
Number values represent floating-point numbers like 37 or -9.25. The Number constructor contains constants and methods for working with numbers. Values of other types can be converted to numbers using the Number() function.
๐ŸŒ
Google Play
play.google.com โ€บ store โ€บ apps โ€บ details
Floating Point Converter - Apps on Google Play
This little app helps dealing with IEEE-754 floating point numbers.
Rating: 4.5 โ€‹ - โ€‹ 59 votes
๐ŸŒ
Zipcores
zipcores.com โ€บ floating-point-to-fixed-point-converter.html
Floating-point to Fixed-point Converter
Converts 32-bit floating-point numbers to fixed-point representation. The fixed-point output has a configurable word and fraction width. Floating-point inputs are based on the IEEE 754 standard.
๐ŸŒ
Cornell University
cs.cornell.edu โ€บ ~tomf โ€บ notes โ€บ cps104 โ€บ floating
Floating Point
This document explains the IEEE 754 floating-point standard. It explains the binary representation of these numbers, how to convert to decimal from floating point, how to convert from floating point to decimal, discusses special cases in floating point, and finally ends with some C code to ...