C:
char c = '\u8346';
printf("%c\n", c); // Output: 荆
JavaScript:
const char = '\u8346';
console.log(char); // Output: 荆
Java:
char c = '\u8346';
System.out.println(c); // Output: 荆
JSON:
{"text": "\u8346"} // Value: 荆
Python:
char = '\u8346'
print(char) # Output: 荆
Perl:
my $char = "\x{8346}";
print $char; # Output: 荆
PHP:
$char = "\x{8346}";
echo $char; // Output: 荆
Ruby:
char = "\u{8346}"
puts char # Output: 荆
Rust:
let c = '\u{8346}';
println!("{}", c); // Output: 荆
Go:
char := '\u8346'
fmt.Printf("%c\n", char) // Output: 荆
CSS:
/* CSS content property */
.element::before {
content: "\008346"; /* 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%86
MD5:
d2a9d9a57fdf04a6bf15448fcb203e20
SHA1:
73860066f80ef2867cbb1cc45a28fb5082e3fe20
Base64:
6I2G