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