C:
char c = '\u5B90';
printf("%c\n", c); // Output: 宐
JavaScript:
const char = '\u5B90';
console.log(char); // Output: 宐
Java:
char c = '\u5B90';
System.out.println(c); // Output: 宐
JSON:
{"text": "\u5B90"} // Value: 宐
Python:
char = '\u5B90'
print(char) # Output: 宐
Perl:
my $char = "\x{5B90}";
print $char; # Output: 宐
PHP:
$char = "\x{5B90}";
echo $char; // Output: 宐
Ruby:
char = "\u{5B90}"
puts char # Output: 宐
Rust:
let c = '\u{5B90}';
println!("{}", c); // Output: 宐
Go:
char := '\u5B90'
fmt.Printf("%c\n", char) // Output: 宐
CSS:
/* CSS content property */
.element::before {
content: "\005B90"; /* 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%90
MD5:
deea7e2b8e9dd7473abdc0f6598c6bfc
SHA1:
0a2f88981f31f6835fb645987ceb244012b5d70b
Base64:
5a6Q