C:
char c = '\u8398';
printf("%c\n", c); // Output: 莘
JavaScript:
const char = '\u8398';
console.log(char); // Output: 莘
Java:
char c = '\u8398';
System.out.println(c); // Output: 莘
JSON:
{"text": "\u8398"} // Value: 莘
Python:
char = '\u8398'
print(char) # Output: 莘
Perl:
my $char = "\x{8398}";
print $char; # Output: 莘
PHP:
$char = "\x{8398}";
echo $char; // Output: 莘
Ruby:
char = "\u{8398}"
puts char # Output: 莘
Rust:
let c = '\u{8398}';
println!("{}", c); // Output: 莘
Go:
char := '\u8398'
fmt.Printf("%c\n", char) // Output: 莘
CSS:
/* CSS content property */
.element::before {
content: "\008398"; /* 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%8E%98
MD5:
61e24f12f0f43e8c7873843c82ba280a
SHA1:
a2c6a1f9e162a500ed71c3b1ae6f21610131fc0f
Base64:
6I6Y