Unicode Finder

"5" U+0035(DIGIT FIVE)

5
U+0035
Block Name
Basic Latin
Name
DIGIT FIVE

Programming

C
\u0035
JavaScript
\u0035
Java
\u0035
Json
\u0035
Python
\u0035
Perl
\x{0035}
PHP
\x{0035}
Ruby
\u{0035}
Rust
\u{35}
Go
\u0035

Web

CSS
\000035
HtmlDecimal
5
HtmlHexadecimal
5
Url
5

Code

MD5
e4da3b7fbbce2345d7772b0674a318d5
Sha1
ac3478d69a3c81fa62e60f5c3696165a4e5e6ac4
Base64
NQ==

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u0035';
console.log(char);  // Output: 5

Java:

char c = '\u0035';
System.out.println(c);  // Output: 5

JSON:

{"text": "\u0035"}  // Value: 5

Python:

char = '\u0035'
print(char)  # Output: 5

Perl:

my $char = "\x{0035}";
print $char;  # Output: 5

PHP:

$char = "\x{0035}";
echo $char;  // Output: 5

Ruby:

char = "\u{0035}"
puts char  # Output: 5

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\000035";  /* Display: 5 */
}

HTML Decimal:

<p>HTML decimal: &#53;</p>  <!-- Display: 5 -->

HTML Hexadecimal:

<p>HTML hex: &#x0035;</p>  <!-- Display: 5 -->

URL Encoding:

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

Encodings

MD5:

e4da3b7fbbce2345d7772b0674a318d5

SHA1:

ac3478d69a3c81fa62e60f5c3696165a4e5e6ac4

Base64:

NQ==