C:
char c = '\u9506';
printf("%c\n", c); // Output: 锆
JavaScript:
const char = '\u9506';
console.log(char); // Output: 锆
Java:
char c = '\u9506';
System.out.println(c); // Output: 锆
JSON:
{"text": "\u9506"} // Value: 锆
Python:
char = '\u9506'
print(char) # Output: 锆
Perl:
my $char = "\x{9506}";
print $char; # Output: 锆
PHP:
$char = "\x{9506}";
echo $char; // Output: 锆
Ruby:
char = "\u{9506}"
puts char # Output: 锆
Rust:
let c = '\u{9506}';
println!("{}", c); // Output: 锆
Go:
char := '\u9506'
fmt.Printf("%c\n", char) // Output: 锆
CSS:
/* CSS content property */
.element::before {
content: "\009506"; /* 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%86
MD5:
6155071288df602b6bcd1d19c033ad56
SHA1:
5ddb9e956f4d7a88d038d1dfe24fd0cfddfb078d
Base64:
6ZSG