Unicode Finder

"2" U+0032(DIGIT TWO)

2
U+0032
Block Name
Basic Latin
Name
DIGIT TWO

Programming

C
\u0032
JavaScript
\u0032
Java
\u0032
Json
\u0032
Python
\u0032
Perl
\x{0032}
PHP
\x{0032}
Ruby
\u{0032}
Rust
\u{32}
Go
\u0032

Web

CSS
\000032
HtmlDecimal
2
HtmlHexadecimal
2
Url
2

Code

MD5
c81e728d9d4c2f636f067f89cc14862c
Sha1
da4b9237bacccdf19c0760cab7aec4a8359010b0
Base64
Mg==

Usage Examples

Programming Languages

C:

char c = '\u0032';
printf("%c\n", c);  // Output: 2

JavaScript:

const char = '\u0032';
console.log(char);  // Output: 2

Java:

char c = '\u0032';
System.out.println(c);  // Output: 2

JSON:

{"text": "\u0032"}  // Value: 2

Python:

char = '\u0032'
print(char)  # Output: 2

Perl:

my $char = "\x{0032}";
print $char;  # Output: 2

PHP:

$char = "\x{0032}";
echo $char;  // Output: 2

Ruby:

char = "\u{0032}"
puts char  # Output: 2

Rust:

let c = '\u{32}';
println!("{}", c);  // Output: 2

Go:

char := '\u0032'
fmt.Printf("%c\n", char)  // Output: 2

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\000032";  /* Display: 2 */
}

HTML Decimal:

<p>HTML decimal: &#50;</p>  <!-- Display: 2 -->

HTML Hexadecimal:

<p>HTML hex: &#x0032;</p>  <!-- Display: 2 -->

URL Encoding:

// 2 URL encoding
https://unicodefinder.com/search.php?query=2

Encodings

MD5:

c81e728d9d4c2f636f067f89cc14862c

SHA1:

da4b9237bacccdf19c0760cab7aec4a8359010b0

Base64:

Mg==