C:
char c = '\u9520';
printf("%c\n", c); // Output: 锠
JavaScript:
const char = '\u9520';
console.log(char); // Output: 锠
Java:
char c = '\u9520';
System.out.println(c); // Output: 锠
JSON:
{"text": "\u9520"} // Value: 锠
Python:
char = '\u9520'
print(char) # Output: 锠
Perl:
my $char = "\x{9520}";
print $char; # Output: 锠
PHP:
$char = "\x{9520}";
echo $char; // Output: 锠
Ruby:
char = "\u{9520}"
puts char # Output: 锠
Rust:
let c = '\u{9520}';
println!("{}", c); // Output: 锠
Go:
char := '\u9520'
fmt.Printf("%c\n", char) // Output: 锠
CSS:
/* CSS content property */
.element::before {
content: "\009520"; /* 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%A0
MD5:
4d3e927741123dd7478efcf24213939d
SHA1:
a04dd6006173b7549d679445c0ac1fbcf59d8678
Base64:
6ZSg