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