Unicode Finder

"🎫" U+1F3AB(TICKET)

🎫
U+1F3AB
Název Bloku
Miscellaneous Symbols and Pictographs
Název
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==

Příklady Použití

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==