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