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