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