C:
char c = '\u8340';
printf("%c\n", c); // Output: 荀
JavaScript:
const char = '\u8340';
console.log(char); // Output: 荀
Java:
char c = '\u8340';
System.out.println(c); // Output: 荀
JSON:
{"text": "\u8340"} // Value: 荀
Python:
char = '\u8340'
print(char) # Output: 荀
Perl:
my $char = "\x{8340}";
print $char; # Output: 荀
PHP:
$char = "\x{8340}";
echo $char; // Output: 荀
Ruby:
char = "\u{8340}"
puts char # Output: 荀
Rust:
let c = '\u{8340}';
println!("{}", c); // Output: 荀
Go:
char := '\u8340'
fmt.Printf("%c\n", char) // Output: 荀
CSS:
/* CSS content property */
.element::before {
content: "\008340"; /* 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%80
MD5:
1da9a1aeedcfcce45cffec6c9ddd2946
SHA1:
bc67775f8143751914329aa34bb6217e107472ee
Base64:
6I2A