Unicode Finder

"🖔" U+1F594(REVERSED VICTORY HAND)

🖔
U+1F594
Nombre del Bloque
Miscellaneous Symbols and Pictographs
Nombre
REVERSED VICTORY HAND

Programming

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

Web

CSS
\01F594
HtmlDecimal
🖔
HtmlHexadecimal
🖔
Url
%F0%9F%96%94

Code

MD5
159594cf8549004b829ba6c6356c65d6
Sha1
5ba6ed46572a9a2afd8781290ecc8c8a509179c3
Base64
8J+WlA==

Ejemplos de Uso

Programming Languages

C:

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

JavaScript:

const char = '\u1F594';
console.log(char);  // Output: 🖔

Java:

char c = '\u1F594';
System.out.println(c);  // Output: 🖔

JSON:

{"text": "\u1F594"}  // Value: 🖔

Python:

char = '\u1F594'
print(char)  # Output: 🖔

Perl:

my $char = "\x{1F594}";
print $char;  # Output: 🖔

PHP:

$char = "\x{1F594}";
echo $char;  // Output: 🖔

Ruby:

char = "\u{1F594}"
puts char  # Output: 🖔

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#128404;</p>  <!-- Display: 🖔 -->

HTML Hexadecimal:

<p>HTML hex: &#x1F594;</p>  <!-- Display: 🖔 -->

URL Encoding:

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

Encodings

MD5:

159594cf8549004b829ba6c6356c65d6

SHA1:

5ba6ed46572a9a2afd8781290ecc8c8a509179c3

Base64:

8J+WlA==