C:
char c = '\u5B98';
printf("%c\n", c); // Output: 官
JavaScript:
const char = '\u5B98';
console.log(char); // Output: 官
Java:
char c = '\u5B98';
System.out.println(c); // Output: 官
JSON:
{"text": "\u5B98"} // Value: 官
Python:
char = '\u5B98'
print(char) # Output: 官
Perl:
my $char = "\x{5B98}";
print $char; # Output: 官
PHP:
$char = "\x{5B98}";
echo $char; // Output: 官
Ruby:
char = "\u{5B98}"
puts char # Output: 官
Rust:
let c = '\u{5B98}';
println!("{}", c); // Output: 官
Go:
char := '\u5B98'
fmt.Printf("%c\n", char) // Output: 官
CSS:
/* CSS content property */
.element::before {
content: "\005B98"; /* 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%AE%98
MD5:
64380b8bd3150fa97efdc7732f57bf0e
SHA1:
966c12621f7d29556e5864cb766efbeb8de66c62
Base64:
5a6Y