Unicode Finder

"๐Ÿ••" U+1F555(CLOCK FACE SIX OCLOCK)

๐Ÿ••
U+1F555
Block Name
Miscellaneous Symbols and Pictographs
Name
CLOCK FACE SIX OCLOCK

Programming

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

Web

CSS
\01F555
HtmlDecimal
🕕
HtmlHexadecimal
🕕
Url
%F0%9F%95%95

Code

MD5
9cb8e9a9041f5879c0b6c041ffc141a2
Sha1
3a1819f5091408c6fec29981ac49fc184441a687
Base64
8J+VlQ==

Usage Examples

Programming Languages

C:

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

JavaScript:

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

Java:

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

JSON:

{"text": "\u1F555"}  // Value: ๐Ÿ••

Python:

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

Perl:

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

PHP:

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

Ruby:

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

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

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

HTML Hexadecimal:

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

URL Encoding:

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

Encodings

MD5:

9cb8e9a9041f5879c0b6c041ffc141a2

SHA1:

3a1819f5091408c6fec29981ac49fc184441a687

Base64:

8J+VlQ==