C:
char c = '\u1F6EB';
printf("%c\n", c); // Output: 🛫
JavaScript:
const char = '\u1F6EB';
console.log(char); // Output: 🛫
Java:
char c = '\u1F6EB';
System.out.println(c); // Output: 🛫
JSON:
{"text": "\u1F6EB"} // Value: 🛫
Python:
char = '\u1F6EB'
print(char) # Output: 🛫
Perl:
my $char = "\x{1F6EB}";
print $char; # Output: 🛫
PHP:
$char = "\x{1F6EB}";
echo $char; // Output: 🛫
Ruby:
char = "\u{1F6EB}"
puts char # Output: 🛫
Rust:
let c = '\u{1F6EB}';
println!("{}", c); // Output: 🛫
Go:
char := '\u1F6EB'
fmt.Printf("%c\n", char) // Output: 🛫
CSS:
/* CSS content property */
.element::before {
content: "\01F6EB"; /* 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%9B%AB
MD5:
4012951d5131da9b1560523ea749f976
SHA1:
df6f8019a76fac35e85fae19dd6a56251a3c8397
Base64:
8J+bqw==