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