C:
char c = '\u8394';
printf("%c\n", c); // Output: 莔
JavaScript:
const char = '\u8394';
console.log(char); // Output: 莔
Java:
char c = '\u8394';
System.out.println(c); // Output: 莔
JSON:
{"text": "\u8394"} // Value: 莔
Python:
char = '\u8394'
print(char) # Output: 莔
Perl:
my $char = "\x{8394}";
print $char; # Output: 莔
PHP:
$char = "\x{8394}";
echo $char; // Output: 莔
Ruby:
char = "\u{8394}"
puts char # Output: 莔
Rust:
let c = '\u{8394}';
println!("{}", c); // Output: 莔
Go:
char := '\u8394'
fmt.Printf("%c\n", char) // Output: 莔
CSS:
/* CSS content property */
.element::before {
content: "\008394"; /* 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%94
MD5:
0146490ca2a17e24c23a4625d8395f63
SHA1:
1365d55bd697216406bb3737e96aecd2df817e22
Base64:
6I6U