Unicode Finder

"6" U+0036(DIGIT SIX)

6
U+0036
Block Name
Basic Latin
Name
DIGIT SIX

Programming

C
\u0036
JavaScript
\u0036
Java
\u0036
Json
\u0036
Python
\u0036
Perl
\x{0036}
PHP
\x{0036}
Ruby
\u{0036}
Rust
\u{36}
Go
\u0036

Web

CSS
\000036
HtmlDecimal
6
HtmlHexadecimal
6
Url
6

Code

MD5
1679091c5a880faf6fb5e6087eb1b2dc
Sha1
c1dfd96eea8cc2b62785275bca38ac261256e278
Base64
Ng==

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u0036';
console.log(char);  // Output: 6

Java:

char c = '\u0036';
System.out.println(c);  // Output: 6

JSON:

{"text": "\u0036"}  // Value: 6

Python:

char = '\u0036'
print(char)  # Output: 6

Perl:

my $char = "\x{0036}";
print $char;  # Output: 6

PHP:

$char = "\x{0036}";
echo $char;  // Output: 6

Ruby:

char = "\u{0036}"
puts char  # Output: 6

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\000036";  /* Display: 6 */
}

HTML Decimal:

<p>HTML decimal: &#54;</p>  <!-- Display: 6 -->

HTML Hexadecimal:

<p>HTML hex: &#x0036;</p>  <!-- Display: 6 -->

URL Encoding:

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

Encodings

MD5:

1679091c5a880faf6fb5e6087eb1b2dc

SHA1:

c1dfd96eea8cc2b62785275bca38ac261256e278

Base64:

Ng==