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