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