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