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