Unicode Finder

"🔟" U+1F51F(KEYCAP TEN)

🔟
U+1F51F
Nombre del Bloque
Miscellaneous Symbols and Pictographs
Nombre
KEYCAP TEN

Programming

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

Web

CSS
\01F51F
HtmlDecimal
🔟
HtmlHexadecimal
🔟
Url
%F0%9F%94%9F

Code

MD5
459e4373231126b36f7ebb338ebb0a36
Sha1
2fd376d8c1bf302b0634b216e32e32b1bc15ccac
Base64
8J+Unw==

Ejemplos de Uso

Programming Languages

C:

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

JavaScript:

const char = '\u1F51F';
console.log(char);  // Output: 🔟

Java:

char c = '\u1F51F';
System.out.println(c);  // Output: 🔟

JSON:

{"text": "\u1F51F"}  // Value: 🔟

Python:

char = '\u1F51F'
print(char)  # Output: 🔟

Perl:

my $char = "\x{1F51F}";
print $char;  # Output: 🔟

PHP:

$char = "\x{1F51F}";
echo $char;  // Output: 🔟

Ruby:

char = "\u{1F51F}"
puts char  # Output: 🔟

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#128287;</p>  <!-- Display: 🔟 -->

HTML Hexadecimal:

<p>HTML hex: &#x1F51F;</p>  <!-- Display: 🔟 -->

URL Encoding:

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

Encodings

MD5:

459e4373231126b36f7ebb338ebb0a36

SHA1:

2fd376d8c1bf302b0634b216e32e32b1bc15ccac

Base64:

8J+Unw==