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: 🎫
CSS:
/* CSS content property */
.element::before {
content: "\01F3AB"; /* Display: 🎫 */
}
HTML Decimal:
<p>HTML decimal: 🎫</p> <!-- Display: 🎫 -->
HTML Hexadecimal:
<p>HTML hex: 🎫</p> <!-- Display: 🎫 -->
URL Encoding:
// 🎫 URL encoding
https://unicodefinder.com/search.php?query=%F0%9F%8E%AB
MD5:
7206f29e0c5db21de2cfadb2de8e856a
SHA1:
5d66b1c68ba75a811e3ea9549b9eb4f7c82e3ee0
Base64:
8J+Oqw==