Unicode Finder

"๐Ÿ•š" U+1F55A(CLOCK FACE ELEVEN OCLOCK)

๐Ÿ•š
U+1F55A
Block Name
Miscellaneous Symbols and Pictographs
Name
CLOCK FACE ELEVEN OCLOCK

Programming

C
\u1F55A
JavaScript
\u1F55A
Java
\u1F55A
Json
\u1F55A
Python
\u1F55A
Perl
\x{1F55A}
PHP
\x{1F55A}
Ruby
\u{1F55A}
Rust
\u{1F55A}
Go
\u1F55A

Web

CSS
\01F55A
HtmlDecimal
🕚
HtmlHexadecimal
🕚
Url
%F0%9F%95%9A

Code

MD5
2006e1834d0581101893db793e12b858
Sha1
5c6c67d6549f34dea7634da88e4f26b6b3910d03
Base64
8J+Vmg==

Usage Examples

Programming Languages

C:

char c = '\u1F55A';
printf("%c\n", c);  // Output: ๐Ÿ•š

JavaScript:

const char = '\u1F55A';
console.log(char);  // Output: ๐Ÿ•š

Java:

char c = '\u1F55A';
System.out.println(c);  // Output: ๐Ÿ•š

JSON:

{"text": "\u1F55A"}  // Value: ๐Ÿ•š

Python:

char = '\u1F55A'
print(char)  # Output: ๐Ÿ•š

Perl:

my $char = "\x{1F55A}";
print $char;  # Output: ๐Ÿ•š

PHP:

$char = "\x{1F55A}";
echo $char;  // Output: ๐Ÿ•š

Ruby:

char = "\u{1F55A}"
puts char  # Output: ๐Ÿ•š

Rust:

let c = '\u{1F55A}';
println!("{}", c);  // Output: ๐Ÿ•š

Go:

char := '\u1F55A'
fmt.Printf("%c\n", char)  // Output: ๐Ÿ•š

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\01F55A";  /* Display: ๐Ÿ•š */
}

HTML Decimal:

<p>HTML decimal: &#128346;</p>  <!-- Display: ๐Ÿ•š -->

HTML Hexadecimal:

<p>HTML hex: &#x1F55A;</p>  <!-- Display: ๐Ÿ•š -->

URL Encoding:

// ๐Ÿ•š URL encoding
https://unicodefinder.com/search.php?query=%F0%9F%95%9A

Encodings

MD5:

2006e1834d0581101893db793e12b858

SHA1:

5c6c67d6549f34dea7634da88e4f26b6b3910d03

Base64:

8J+Vmg==