C:
char c = '\u8912';
printf("%c\n", c); // Output: 褒
JavaScript:
const char = '\u8912';
console.log(char); // Output: 褒
Java:
char c = '\u8912';
System.out.println(c); // Output: 褒
JSON:
{"text": "\u8912"} // Value: 褒
Python:
char = '\u8912'
print(char) # Output: 褒
Perl:
my $char = "\x{8912}";
print $char; # Output: 褒
PHP:
$char = "\x{8912}";
echo $char; // Output: 褒
Ruby:
char = "\u{8912}"
puts char # Output: 褒
Rust:
let c = '\u{8912}';
println!("{}", c); // Output: 褒
Go:
char := '\u8912'
fmt.Printf("%c\n", char) // Output: 褒
CSS:
/* CSS content property */
.element::before {
content: "\008912"; /* 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%A4%92
MD5:
e1db2d2c17a3090179d0e92becfbf4ec
SHA1:
58d2b29927af0d46e4e1612c1c96b084f7ae62e0
Base64:
6KSS