Unicode Finder

"🕖" U+1F556(CLOCK FACE SEVEN OCLOCK)

🕖
U+1F556
Nombre del Bloque
Miscellaneous Symbols and Pictographs
Nombre
CLOCK FACE SEVEN OCLOCK

Programming

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

Web

CSS
\01F556
HtmlDecimal
🕖
HtmlHexadecimal
🕖
Url
%F0%9F%95%96

Code

MD5
b8b69891992a788f6270b798d029cbea
Sha1
4ce1097445b01a792dea43dce0238332069a6eff
Base64
8J+Vlg==

Ejemplos de Uso

Programming Languages

C:

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

JavaScript:

const char = '\u1F556';
console.log(char);  // Output: 🕖

Java:

char c = '\u1F556';
System.out.println(c);  // Output: 🕖

JSON:

{"text": "\u1F556"}  // Value: 🕖

Python:

char = '\u1F556'
print(char)  # Output: 🕖

Perl:

my $char = "\x{1F556}";
print $char;  # Output: 🕖

PHP:

$char = "\x{1F556}";
echo $char;  // Output: 🕖

Ruby:

char = "\u{1F556}"
puts char  # Output: 🕖

Rust:

let c = '\u{1F556}';
println!("{}", c);  // Output: 🕖

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\01F556";  /* Display: 🕖 */
}

HTML Decimal:

<p>HTML decimal: &#128342;</p>  <!-- Display: 🕖 -->

HTML Hexadecimal:

<p>HTML hex: &#x1F556;</p>  <!-- Display: 🕖 -->

URL Encoding:

// 🕖 URL encoding
https://unicodefinder.com/search.php?query=%F0%9F%95%96

Encodings

MD5:

b8b69891992a788f6270b798d029cbea

SHA1:

4ce1097445b01a792dea43dce0238332069a6eff

Base64:

8J+Vlg==