C:
char c = '\u5932';
printf("%c\n", c); // Output: 夲
JavaScript:
const char = '\u5932';
console.log(char); // Output: 夲
Java:
char c = '\u5932';
System.out.println(c); // Output: 夲
JSON:
{"text": "\u5932"} // Value: 夲
Python:
char = '\u5932'
print(char) # Output: 夲
Perl:
my $char = "\x{5932}";
print $char; # Output: 夲
PHP:
$char = "\x{5932}";
echo $char; // Output: 夲
Ruby:
char = "\u{5932}"
puts char # Output: 夲
Rust:
let c = '\u{5932}';
println!("{}", c); // Output: 夲
Go:
char := '\u5932'
fmt.Printf("%c\n", char) // Output: 夲
CSS:
/* CSS content property */
.element::before {
content: "\005932"; /* 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%A4%B2
MD5:
267fdc3441b9f7a63af858ae8f1511f9
SHA1:
a3a48615118c78c19261fecbafbb43adbefc9054
Base64:
5aSy