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