C:
char c = '\u1F47B';
printf("%c\n", c); // Output: 👻
JavaScript:
const char = '\u1F47B';
console.log(char); // Output: 👻
Java:
char c = '\u1F47B';
System.out.println(c); // Output: 👻
JSON:
{"text": "\u1F47B"} // Value: 👻
Python:
char = '\u1F47B'
print(char) # Output: 👻
Perl:
my $char = "\x{1F47B}";
print $char; # Output: 👻
PHP:
$char = "\x{1F47B}";
echo $char; // Output: 👻
Ruby:
char = "\u{1F47B}"
puts char # Output: 👻
Rust:
let c = '\u{1F47B}';
println!("{}", c); // Output: 👻
Go:
char := '\u1F47B'
fmt.Printf("%c\n", char) // Output: 👻
CSS:
/* CSS content property */
.element::before {
content: "\01F47B"; /* 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%91%BB
MD5:
3d6baa6639892d2264406e0fe3ba8f6e
SHA1:
162f2568621507edf8ac07403f304dc0f9af85f4
Base64:
8J+Ruw==