Skip to main content
Numverto numverto
hexadecimal hindi number systems

Hexadecimal (Hex) क्या है — आसान भाषा में समझें

Hexadecimal number system की पूरी जानकारी हिंदी में। Hex क्या है, 0-9 और A-F क्यों use होते हैं, decimal और binary से कैसे convert करें।

Numverto Editorial Team Numverto Editorial Team 4 min read Editorial standards

Hexadecimal Number System क्या है?

🔧 अभी convert करें: Number System Converter — decimal, binary, octal, hex एक click में convert करें।

Hexadecimal (या “hex”) एक base-16 number system है। इसमें 16 symbols use होते हैं:

0, 1, 2, 3, 4, 5, 6, 7, 8, 9, A, B, C, D, E, F

जहाँ A=10, B=11, C=12, D=13, E=14, F=15 (decimal में)।

Hex में A से F क्यों?

Decimal system में 0-9 (10 symbols) होते हैं। Hexadecimal में 16 symbols चाहिए, तो 10-15 के लिए A-F letters use किए गए:

Hex DigitDecimal ValueBinary (4-bit)
000000
110001
220010
330011
440100
550101
660110
770111
881000
991001
A101010
B111011
C121100
D131101
E141110
F151111

Key Point: एक hex digit = exactly 4 binary bits। इसीलिए programmers hex prefer करते हैं — binary को compact form में लिख सकते हैं।

Decimal vs Binary vs Hexadecimal — तुलना

DecimalBinaryHexadecimal
000000
501015
101010A
151111F
161000010
100110010064
20011001000C8
25511111111FF
256100000000100

Decimal से Hex में Convert कैसे करें?

Method: Number को 16 से divide करते जाओ, remainder note करो।

Example: 255 को hex में convert करें

DivisionQuotientRemainder
255 ÷ 161515 → F
15 ÷ 16015 → F

नीचे से ऊपर पढ़ें: FF

Answer: 255 (decimal) = FF (hex) ✓

Example: 200 को hex में convert करें

DivisionQuotientRemainder
200 ÷ 16128 → 8
12 ÷ 16012 → C

Answer: 200 (decimal) = C8 (hex) ✓

Hex से Decimal में Convert कैसे करें?

Method: हर digit को 16 की power से multiply करो (right side से start)।

Example: 1A3 को decimal में convert करें

1 × 16² + A × 16¹ + 3 × 16⁰
= 1 × 256 + 10 × 16 + 3 × 1
= 256 + 160 + 3
= 419

Answer: 1A3 (hex) = 419 (decimal)

Hexadecimal कहाँ Use होता है?

Use CaseExample
Web Colors#FF5733 (CSS color code)
Memory Addresses0x7FFF0000
MAC AddressA4:B1:C2:D3:E4:F5
Error Codes0x80070005 (Windows error)
Assembly LanguageMOV AX, 0FFh
Unicode CharactersU+0041 = ‘A’

Binary और Hex का Shortcut

हर 4 binary bits = 1 hex digit। Binary को groups of 4 में divide करो:

Binary:  1101 0110 1010
Hex:     D    6    A

Answer: 110101101010 = D6A

Hex to Decimal Converter से verify करें।

FAQ — अक्सर पूछे जाने वाले सवाल

Q: Hex में 0x prefix क्यों लगाते हैं? A: Programming में 0x prefix compiler को बताता है कि ये hexadecimal number है, decimal नहीं। जैसे 0xFF = 255, बिना prefix के FF एक variable name लगेगा।

Q: Hex case-sensitive होता है? A: नहीं — FF, ff, और Ff सब same value (255) represent करते हैं। Convention: addresses में uppercase, colors में lowercase आम है।

Q: 1 byte में कितने hex digits आते हैं? A: 2 hex digits = 1 byte (8 bits)। Range: 00 to FF (0 to 255)।

Q: Octal (base-8) vs Hexadecimal — कौन ज्यादा use होता है? A: Modern computing में hexadecimal ज्यादा popular है क्योंकि 1 hex digit = exactly 4 bits (nibble), जो byte-oriented architectures के लिए perfect fit है।

Q: Hex color code #000000 का मतलब क्या है? A: Black — Red=0, Green=0, Blue=0 (कोई light नहीं)। #FFFFFF = White (maximum light)।

Advertisement
Share: Twitter LinkedIn Facebook

Free tools

Learn faster with Numverto

Free number system converters, binary tools, EMI calculators, and more, with step-by-step working.

Written by

Numverto Editorial Team

Numverto Editorial Team

Founder of Numverto. MCA graduate, full-stack developer, and lifelong learner who built this platform so every student gets the explanation, not just the answer.

Related tools

Advertisement

More from Numverto Blog

Discussion

Comments

Popular Tools

View all 25 free tools → · Read tutorials · Number system guide