C:
char c = '\u874B';
printf("%c\n", c); // Output: 蝋
JavaScript:
const char = '\u874B';
console.log(char); // Output: 蝋
Java:
char c = '\u874B';
System.out.println(c); // Output: 蝋
JSON:
{"text": "\u874B"} // Value: 蝋
Python:
char = '\u874B'
print(char) # Output: 蝋
Perl:
my $char = "\x{874B}";
print $char; # Output: 蝋
PHP:
$char = "\x{874B}";
echo $char; // Output: 蝋
Ruby:
char = "\u{874B}"
puts char # Output: 蝋
Rust:
let c = '\u{874B}';
println!("{}", c); // Output: 蝋
Go:
char := '\u874B'
fmt.Printf("%c\n", char) // Output: 蝋
CSS:
/* CSS content property */
.element::before {
content: "\00874B"; /* 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=%E8%9D%8B
MD5:
0e721dd63548d7ee339af708b90b319a
SHA1:
97cef3bed5a54dc311e44ab9fd44c60e935ff718
Base64:
6J2L