C:
char c = '\u5952';
printf("%c\n", c); // Output: 奒
JavaScript:
const char = '\u5952';
console.log(char); // Output: 奒
Java:
char c = '\u5952';
System.out.println(c); // Output: 奒
JSON:
{"text": "\u5952"} // Value: 奒
Python:
char = '\u5952'
print(char) # Output: 奒
Perl:
my $char = "\x{5952}";
print $char; # Output: 奒
PHP:
$char = "\x{5952}";
echo $char; // Output: 奒
Ruby:
char = "\u{5952}"
puts char # Output: 奒
Rust:
let c = '\u{5952}';
println!("{}", c); // Output: 奒
Go:
char := '\u5952'
fmt.Printf("%c\n", char) // Output: 奒
CSS:
/* CSS content property */
.element::before {
content: "\005952"; /* 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%A5%92
MD5:
dcb51db166e65a4866863eaefb72d4a8
SHA1:
4c74bc8dd77a41813487a6f0262c6619ba45efbf
Base64:
5aWS