C:
char c = '\u55B0';
printf("%c\n", c); // Output: 喰
JavaScript:
const char = '\u55B0';
console.log(char); // Output: 喰
Java:
char c = '\u55B0';
System.out.println(c); // Output: 喰
JSON:
{"text": "\u55B0"} // Value: 喰
Python:
char = '\u55B0'
print(char) # Output: 喰
Perl:
my $char = "\x{55B0}";
print $char; # Output: 喰
PHP:
$char = "\x{55B0}";
echo $char; // Output: 喰
Ruby:
char = "\u{55B0}"
puts char # Output: 喰
Rust:
let c = '\u{55B0}';
println!("{}", c); // Output: 喰
Go:
char := '\u55B0'
fmt.Printf("%c\n", char) // Output: 喰
CSS:
/* CSS content property */
.element::before {
content: "\0055B0"; /* 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=%E5%96%B0
MD5:
4ae10c0cb01197e5d24e60483e6da2fc
SHA1:
1da124fec080cd547c56710eb9ba8c930977b446
Base64:
5Zaw