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