C:
char c = '\u8C49';
printf("%c\n", c); // Output: 豉
JavaScript:
const char = '\u8C49';
console.log(char); // Output: 豉
Java:
char c = '\u8C49';
System.out.println(c); // Output: 豉
JSON:
{"text": "\u8C49"} // Value: 豉
Python:
char = '\u8C49'
print(char) # Output: 豉
Perl:
my $char = "\x{8C49}";
print $char; # Output: 豉
PHP:
$char = "\x{8C49}";
echo $char; // Output: 豉
Ruby:
char = "\u{8C49}"
puts char # Output: 豉
Rust:
let c = '\u{8C49}';
println!("{}", c); // Output: 豉
Go:
char := '\u8C49'
fmt.Printf("%c\n", char) // Output: 豉
CSS:
/* CSS content property */
.element::before {
content: "\008C49"; /* 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%B1%89
MD5:
d30b3c2598a547945ee60ec50a78b928
SHA1:
3c36f8bdf6f2cb4cb6f63e5d48eb7cc1a9909c3d
Base64:
6LGJ