C:
char c = '\u932B';
printf("%c\n", c); // Output: 錫
JavaScript:
const char = '\u932B';
console.log(char); // Output: 錫
Java:
char c = '\u932B';
System.out.println(c); // Output: 錫
JSON:
{"text": "\u932B"} // Value: 錫
Python:
char = '\u932B'
print(char) # Output: 錫
Perl:
my $char = "\x{932B}";
print $char; # Output: 錫
PHP:
$char = "\x{932B}";
echo $char; // Output: 錫
Ruby:
char = "\u{932B}"
puts char # Output: 錫
Rust:
let c = '\u{932B}';
println!("{}", c); // Output: 錫
Go:
char := '\u932B'
fmt.Printf("%c\n", char) // Output: 錫
CSS:
/* CSS content property */
.element::before {
content: "\00932B"; /* 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%AB
MD5:
f2ec71909ee2e04d6fe0abb88be6c640
SHA1:
ff30b4da15559fc7fcc262c07b035d152b19be37
Base64:
6Yyr