Tagged articles
7 articles
Page 1 of 1
Lin is Dream
Lin is Dream
Mar 11, 2025 · Fundamentals

Unlocking Data: How Bits, Bytes, Hex and Encoding Shape Everything

This article explains the relationships between bits, binary, hexadecimal, bytes and strings, shows how computers store and process data using binary, demonstrates hexadecimal and Base64 encodings, provides conversion tables and examples, and clarifies how UTF‑8 encodes characters.

Base64BinaryUTF-8
0 likes · 13 min read
Unlocking Data: How Bits, Bytes, Hex and Encoding Shape Everything
Ops Development & AI Practice
Ops Development & AI Practice
Feb 18, 2024 · Fundamentals

Why Hexadecimal Dominates Computing and Could Higher Bases Ever Replace It?

This article explains the concept of numeral bases, why hexadecimal became the standard in computing due to its compact mapping to binary, explores the theoretical possibility of higher bases like base‑20 or base‑32, and discusses their limited practical applications and inherent complexities.

base conversioncomputer fundamentalsdata representation
0 likes · 6 min read
Why Hexadecimal Dominates Computing and Could Higher Bases Ever Replace It?
Liangxu Linux
Liangxu Linux
Mar 8, 2022 · Fundamentals

Why Hexadecimal Is the Perfect Companion to Binary (and Decimal Isn’t)

The article explains that computers operate in binary, humans benefit from hexadecimal because each hex digit maps to four bits, while decimal lacks this direct mapping, making hex a more intuitive bridge between human readability and binary representation.

Binarybase conversioncomputer fundamentals
0 likes · 7 min read
Why Hexadecimal Is the Perfect Companion to Binary (and Decimal Isn’t)
Laravel Tech Community
Laravel Tech Community
Jan 26, 2021 · Backend Development

hexdec() – Convert Hexadecimal Strings to Decimal in PHP

hexdec() is a PHP built‑in function that converts a hexadecimal string to its decimal value, ignoring any non‑hex characters, and returns the corresponding integer; the article explains its syntax, parameters, return value, and provides example code demonstrating conversions such as "See" and "a0".

BackendConversionPHP
0 likes · 2 min read
hexdec() – Convert Hexadecimal Strings to Decimal in PHP