C:
char c = '\u9521';
printf("%c\n", c); // Output: 锡
JavaScript:
const char = '\u9521';
console.log(char); // Output: 锡
Java:
char c = '\u9521';
System.out.println(c); // Output: 锡
JSON:
{"text": "\u9521"} // Value: 锡
Python:
char = '\u9521'
print(char) # Output: 锡
Perl:
my $char = "\x{9521}";
print $char; # Output: 锡
PHP:
$char = "\x{9521}";
echo $char; // Output: 锡
Ruby:
char = "\u{9521}"
puts char # Output: 锡
Rust:
let c = '\u{9521}';
println!("{}", c); // Output: 锡
Go:
char := '\u9521'
fmt.Printf("%c\n", char) // Output: 锡
CSS:
/* CSS content property */
.element::before {
content: "\009521"; /* 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%94%A1
MD5:
9b3860896f5b3200f56d272872d4ff75
SHA1:
5b541fd3c38c2ccf89079b66f59e866c2aa2233b
Base64:
6ZSh