C:
char c = '\u5953';
printf("%c\n", c); // Output: 奓
JavaScript:
const char = '\u5953';
console.log(char); // Output: 奓
Java:
char c = '\u5953';
System.out.println(c); // Output: 奓
JSON:
{"text": "\u5953"} // Value: 奓
Python:
char = '\u5953'
print(char) # Output: 奓
Perl:
my $char = "\x{5953}";
print $char; # Output: 奓
PHP:
$char = "\x{5953}";
echo $char; // Output: 奓
Ruby:
char = "\u{5953}"
puts char # Output: 奓
Rust:
let c = '\u{5953}';
println!("{}", c); // Output: 奓
Go:
char := '\u5953'
fmt.Printf("%c\n", char) // Output: 奓
CSS:
/* CSS content property */
.element::before {
content: "\005953"; /* 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%93
MD5:
89ef4b040ac0dced69d4e4570af87190
SHA1:
e6038fffdbedcb62334c611a72490f68cb1b0275
Base64:
5aWT