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