C:
char c = '\u9330';
printf("%c\n", c); // Output: 錰
JavaScript:
const char = '\u9330';
console.log(char); // Output: 錰
Java:
char c = '\u9330';
System.out.println(c); // Output: 錰
JSON:
{"text": "\u9330"} // Value: 錰
Python:
char = '\u9330'
print(char) # Output: 錰
Perl:
my $char = "\x{9330}";
print $char; # Output: 錰
PHP:
$char = "\x{9330}";
echo $char; // Output: 錰
Ruby:
char = "\u{9330}"
puts char # Output: 錰
Rust:
let c = '\u{9330}';
println!("{}", c); // Output: 錰
Go:
char := '\u9330'
fmt.Printf("%c\n", char) // Output: 錰
CSS:
/* CSS content property */
.element::before {
content: "\009330"; /* 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%B0
MD5:
77915ab5348866b59ae9d51830cf1563
SHA1:
fc24923f34da286523fd756d1c4bd411078449e2
Base64:
6Yyw