Unicode Finder

"🕚" U+1F55A(CLOCK FACE ELEVEN OCLOCK)

🕚
U+1F55A
Nombre del Bloque
Miscellaneous Symbols and Pictographs
Nombre
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==

Ejemplos de Uso

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==