Unicode Finder

"7" U+0037(DIGIT SEVEN)

7
U+0037
Block Name
Basic Latin
Name
DIGIT SEVEN

Programming

C
\u0037
JavaScript
\u0037
Java
\u0037
Json
\u0037
Python
\u0037
Perl
\x{0037}
PHP
\x{0037}
Ruby
\u{0037}
Rust
\u{37}
Go
\u0037

Web

CSS
\000037
HtmlDecimal
7
HtmlHexadecimal
7
Url
7

Code

MD5
8f14e45fceea167a5a36dedd4bea2543
Sha1
902ba3cda1883801594b6e1b452790cc53948fda
Base64
Nw==

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u0037';
console.log(char);  // Output: 7

Java:

char c = '\u0037';
System.out.println(c);  // Output: 7

JSON:

{"text": "\u0037"}  // Value: 7

Python:

char = '\u0037'
print(char)  # Output: 7

Perl:

my $char = "\x{0037}";
print $char;  # Output: 7

PHP:

$char = "\x{0037}";
echo $char;  // Output: 7

Ruby:

char = "\u{0037}"
puts char  # Output: 7

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\000037";  /* Display: 7 */
}

HTML Decimal:

<p>HTML decimal: &#55;</p>  <!-- Display: 7 -->

HTML Hexadecimal:

<p>HTML hex: &#x0037;</p>  <!-- Display: 7 -->

URL Encoding:

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

Encodings

MD5:

8f14e45fceea167a5a36dedd4bea2543

SHA1:

902ba3cda1883801594b6e1b452790cc53948fda

Base64:

Nw==