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