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