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