Unicode Finder

"🕟" U+1F55F(CLOCK FACE FOUR-THIRTY)

🕟
U+1F55F
Nombre del Bloque
Miscellaneous Symbols and Pictographs
Nombre
CLOCK FACE FOUR-THIRTY

Programming

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

Web

CSS
\01F55F
HtmlDecimal
🕟
HtmlHexadecimal
🕟
Url
%F0%9F%95%9F

Code

MD5
acac67b9fdb72107cac526887ad77d45
Sha1
fb9685a3c7d4ea2e397449c0f2b7e3919e98e3b9
Base64
8J+Vnw==

Ejemplos de Uso

Programming Languages

C:

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

JavaScript:

const char = '\u1F55F';
console.log(char);  // Output: 🕟

Java:

char c = '\u1F55F';
System.out.println(c);  // Output: 🕟

JSON:

{"text": "\u1F55F"}  // Value: 🕟

Python:

char = '\u1F55F'
print(char)  # Output: 🕟

Perl:

my $char = "\x{1F55F}";
print $char;  # Output: 🕟

PHP:

$char = "\x{1F55F}";
echo $char;  // Output: 🕟

Ruby:

char = "\u{1F55F}"
puts char  # Output: 🕟

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#128351;</p>  <!-- Display: 🕟 -->

HTML Hexadecimal:

<p>HTML hex: &#x1F55F;</p>  <!-- Display: 🕟 -->

URL Encoding:

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

Encodings

MD5:

acac67b9fdb72107cac526887ad77d45

SHA1:

fb9685a3c7d4ea2e397449c0f2b7e3919e98e3b9

Base64:

8J+Vnw==