C:
char c = '\u9527';
printf("%c\n", c); // Output: 锧
JavaScript:
const char = '\u9527';
console.log(char); // Output: 锧
Java:
char c = '\u9527';
System.out.println(c); // Output: 锧
JSON:
{"text": "\u9527"} // Value: 锧
Python:
char = '\u9527'
print(char) # Output: 锧
Perl:
my $char = "\x{9527}";
print $char; # Output: 锧
PHP:
$char = "\x{9527}";
echo $char; // Output: 锧
Ruby:
char = "\u{9527}"
puts char # Output: 锧
Rust:
let c = '\u{9527}';
println!("{}", c); // Output: 锧
Go:
char := '\u9527'
fmt.Printf("%c\n", char) // Output: 锧
CSS:
/* CSS content property */
.element::before {
content: "\009527"; /* 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%A7
MD5:
72521a810d9509ee6f00f5ff8f0a96c1
SHA1:
481b98cf0f8c8aa9c535b829d25d8ae0e1355ef1
Base64:
6ZSn