Unicode Finder

"🕅" U+1F545(SYMBOL FOR MARKS CHAPTER)

🕅
U+1F545
Nombre del Bloque
Miscellaneous Symbols and Pictographs
Nombre
SYMBOL FOR MARKS CHAPTER

Programming

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

Web

CSS
\01F545
HtmlDecimal
🕅
HtmlHexadecimal
🕅
Url
%F0%9F%95%85

Code

MD5
05772abfd340626b5ccdde70456daa56
Sha1
c92f5e31785958013b71bbd78aef4d88e9572884
Base64
8J+VhQ==

Ejemplos de Uso

Programming Languages

C:

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

JavaScript:

const char = '\u1F545';
console.log(char);  // Output: 🕅

Java:

char c = '\u1F545';
System.out.println(c);  // Output: 🕅

JSON:

{"text": "\u1F545"}  // Value: 🕅

Python:

char = '\u1F545'
print(char)  # Output: 🕅

Perl:

my $char = "\x{1F545}";
print $char;  # Output: 🕅

PHP:

$char = "\x{1F545}";
echo $char;  // Output: 🕅

Ruby:

char = "\u{1F545}"
puts char  # Output: 🕅

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#128325;</p>  <!-- Display: 🕅 -->

HTML Hexadecimal:

<p>HTML hex: &#x1F545;</p>  <!-- Display: 🕅 -->

URL Encoding:

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

Encodings

MD5:

05772abfd340626b5ccdde70456daa56

SHA1:

c92f5e31785958013b71bbd78aef4d88e9572884

Base64:

8J+VhQ==