C:
char c = '\u9321';
printf("%c\n", c); // Output: 錡
JavaScript:
const char = '\u9321';
console.log(char); // Output: 錡
Java:
char c = '\u9321';
System.out.println(c); // Output: 錡
JSON:
{"text": "\u9321"} // Value: 錡
Python:
char = '\u9321'
print(char) # Output: 錡
Perl:
my $char = "\x{9321}";
print $char; # Output: 錡
PHP:
$char = "\x{9321}";
echo $char; // Output: 錡
Ruby:
char = "\u{9321}"
puts char # Output: 錡
Rust:
let c = '\u{9321}';
println!("{}", c); // Output: 錡
Go:
char := '\u9321'
fmt.Printf("%c\n", char) // Output: 錡
CSS:
/* CSS content property */
.element::before {
content: "\009321"; /* 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%A1
MD5:
4cc1a215f2888eb4e1e54600546d76f6
SHA1:
b8c8528915854cd3f38eb3c7e0e2e6f0ddd8aa0a
Base64:
6Yyh