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