C:
char c = '\u8591';
printf("%c\n", c); // Output: 薑
JavaScript:
const char = '\u8591';
console.log(char); // Output: 薑
Java:
char c = '\u8591';
System.out.println(c); // Output: 薑
JSON:
{"text": "\u8591"} // Value: 薑
Python:
char = '\u8591'
print(char) # Output: 薑
Perl:
my $char = "\x{8591}";
print $char; # Output: 薑
PHP:
$char = "\x{8591}";
echo $char; // Output: 薑
Ruby:
char = "\u{8591}"
puts char # Output: 薑
Rust:
let c = '\u{8591}';
println!("{}", c); // Output: 薑
Go:
char := '\u8591'
fmt.Printf("%c\n", char) // Output: 薑
CSS:
/* CSS content property */
.element::before {
content: "\008591"; /* 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%96%91
MD5:
a73c8e73134faf58c8a314b62fb4aae4
SHA1:
e1619eee2a2b0e89878da4ea9a23323ea0ae1102
Base64:
6JaR