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