Unicode Finder

"9" U+0039(DIGIT NINE)

9
U+0039
Block Name
Basic Latin
Name
DIGIT NINE

Programming

C
\u0039
JavaScript
\u0039
Java
\u0039
Json
\u0039
Python
\u0039
Perl
\x{0039}
PHP
\x{0039}
Ruby
\u{0039}
Rust
\u{39}
Go
\u0039

Web

CSS
\000039
HtmlDecimal
9
HtmlHexadecimal
9
Url
9

Code

MD5
45c48cce2e2d7fbdea1afc51c7c6ad26
Sha1
0ade7c2cf97f75d009975f4d720d1fa6c19f4897
Base64
OQ==

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u0039';
console.log(char);  // Output: 9

Java:

char c = '\u0039';
System.out.println(c);  // Output: 9

JSON:

{"text": "\u0039"}  // Value: 9

Python:

char = '\u0039'
print(char)  # Output: 9

Perl:

my $char = "\x{0039}";
print $char;  # Output: 9

PHP:

$char = "\x{0039}";
echo $char;  // Output: 9

Ruby:

char = "\u{0039}"
puts char  # Output: 9

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\000039";  /* Display: 9 */
}

HTML Decimal:

<p>HTML decimal: &#57;</p>  <!-- Display: 9 -->

HTML Hexadecimal:

<p>HTML hex: &#x0039;</p>  <!-- Display: 9 -->

URL Encoding:

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

Encodings

MD5:

45c48cce2e2d7fbdea1afc51c7c6ad26

SHA1:

0ade7c2cf97f75d009975f4d720d1fa6c19f4897

Base64:

OQ==