C:
char c = '\u9662';
printf("%c\n", c); // Output: 院
JavaScript:
const char = '\u9662';
console.log(char); // Output: 院
Java:
char c = '\u9662';
System.out.println(c); // Output: 院
JSON:
{"text": "\u9662"} // Value: 院
Python:
char = '\u9662'
print(char) # Output: 院
Perl:
my $char = "\x{9662}";
print $char; # Output: 院
PHP:
$char = "\x{9662}";
echo $char; // Output: 院
Ruby:
char = "\u{9662}"
puts char # Output: 院
Rust:
let c = '\u{9662}';
println!("{}", c); // Output: 院
Go:
char := '\u9662'
fmt.Printf("%c\n", char) // Output: 院
CSS:
/* CSS content property */
.element::before {
content: "\009662"; /* 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=%E9%99%A2
MD5:
bd3a00748731f6ad44ef82c778591ff2
SHA1:
ead69987e392722635db506e279776fb67ad1b47
Base64:
6Zmi