C:
char c = '\u9320';
printf("%c\n", c); // Output: 錠
JavaScript:
const char = '\u9320';
console.log(char); // Output: 錠
Java:
char c = '\u9320';
System.out.println(c); // Output: 錠
JSON:
{"text": "\u9320"} // Value: 錠
Python:
char = '\u9320'
print(char) # Output: 錠
Perl:
my $char = "\x{9320}";
print $char; # Output: 錠
PHP:
$char = "\x{9320}";
echo $char; // Output: 錠
Ruby:
char = "\u{9320}"
puts char # Output: 錠
Rust:
let c = '\u{9320}';
println!("{}", c); // Output: 錠
Go:
char := '\u9320'
fmt.Printf("%c\n", char) // Output: 錠
CSS:
/* CSS content property */
.element::before {
content: "\009320"; /* 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%8C%A0
MD5:
2948b7333218472f233974c25f1a4a9e
SHA1:
6d06fe52344b2414e0918dabcddfa7f24366599d
Base64:
6Yyg