C:
char c = '\u5396';
printf("%c\n", c); // Output: 厖
JavaScript:
const char = '\u5396';
console.log(char); // Output: 厖
Java:
char c = '\u5396';
System.out.println(c); // Output: 厖
JSON:
{"text": "\u5396"} // Value: 厖
Python:
char = '\u5396'
print(char) # Output: 厖
Perl:
my $char = "\x{5396}";
print $char; # Output: 厖
PHP:
$char = "\x{5396}";
echo $char; // Output: 厖
Ruby:
char = "\u{5396}"
puts char # Output: 厖
Rust:
let c = '\u{5396}';
println!("{}", c); // Output: 厖
Go:
char := '\u5396'
fmt.Printf("%c\n", char) // Output: 厖
CSS:
/* CSS content property */
.element::before {
content: "\005396"; /* 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=%E5%8E%96
MD5:
6a8002e48fe3e5968afc6cbadfd05279
SHA1:
917f8c8094253b2b4536e3f8560e9757dfcc57f6
Base64:
5Y6W