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