C:
char c = '\u8352';
printf("%c\n", c); // Output: 荒
JavaScript:
const char = '\u8352';
console.log(char); // Output: 荒
Java:
char c = '\u8352';
System.out.println(c); // Output: 荒
JSON:
{"text": "\u8352"} // Value: 荒
Python:
char = '\u8352'
print(char) # Output: 荒
Perl:
my $char = "\x{8352}";
print $char; # Output: 荒
PHP:
$char = "\x{8352}";
echo $char; // Output: 荒
Ruby:
char = "\u{8352}"
puts char # Output: 荒
Rust:
let c = '\u{8352}';
println!("{}", c); // Output: 荒
Go:
char := '\u8352'
fmt.Printf("%c\n", char) // Output: 荒
CSS:
/* CSS content property */
.element::before {
content: "\008352"; /* 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%8D%92
MD5:
bc46b9853caeef7061884b1cfb74007b
SHA1:
0be93eaeb65c1dc75393231deef2362659c75b7d
Base64:
6I2S