Unicode Finder

"๐ŸŽซ" U+1F3AB(TICKET)

๐ŸŽซ
U+1F3AB
Nome del Blocco
Miscellaneous Symbols and Pictographs
Nome
TICKET

Programming

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

Web

CSS
\01F3AB
HtmlDecimal
🎫
HtmlHexadecimal
🎫
Url
%F0%9F%8E%AB

Code

MD5
7206f29e0c5db21de2cfadb2de8e856a
Sha1
5d66b1c68ba75a811e3ea9549b9eb4f7c82e3ee0
Base64
8J+Oqw==

Esempi di Utilizzo

Programming Languages

C:

char c = '\u1F3AB';
printf("%c\n", c);  // Output: ๐ŸŽซ

JavaScript:

const char = '\u1F3AB';
console.log(char);  // Output: ๐ŸŽซ

Java:

char c = '\u1F3AB';
System.out.println(c);  // Output: ๐ŸŽซ

JSON:

{"text": "\u1F3AB"}  // Value: ๐ŸŽซ

Python:

char = '\u1F3AB'
print(char)  # Output: ๐ŸŽซ

Perl:

my $char = "\x{1F3AB}";
print $char;  # Output: ๐ŸŽซ

PHP:

$char = "\x{1F3AB}";
echo $char;  // Output: ๐ŸŽซ

Ruby:

char = "\u{1F3AB}"
puts char  # Output: ๐ŸŽซ

Rust:

let c = '\u{1F3AB}';
println!("{}", c);  // Output: ๐ŸŽซ

Go:

char := '\u1F3AB'
fmt.Printf("%c\n", char)  // Output: ๐ŸŽซ

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\01F3AB";  /* Display: ๐ŸŽซ */
}

HTML Decimal:

<p>HTML decimal: &#127915;</p>  <!-- Display: ๐ŸŽซ -->

HTML Hexadecimal:

<p>HTML hex: &#x1F3AB;</p>  <!-- Display: ๐ŸŽซ -->

URL Encoding:

// ๐ŸŽซ URL encoding
https://unicodefinder.com/search.php?query=%F0%9F%8E%AB

Encodings

MD5:

7206f29e0c5db21de2cfadb2de8e856a

SHA1:

5d66b1c68ba75a811e3ea9549b9eb4f7c82e3ee0

Base64:

8J+Oqw==