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