C:
char c = '\u9422';
printf("%c\n", c); // Output: 鐢
JavaScript:
const char = '\u9422';
console.log(char); // Output: 鐢
Java:
char c = '\u9422';
System.out.println(c); // Output: 鐢
JSON:
{"text": "\u9422"} // Value: 鐢
Python:
char = '\u9422'
print(char) # Output: 鐢
Perl:
my $char = "\x{9422}";
print $char; # Output: 鐢
PHP:
$char = "\x{9422}";
echo $char; // Output: 鐢
Ruby:
char = "\u{9422}"
puts char # Output: 鐢
Rust:
let c = '\u{9422}';
println!("{}", c); // Output: 鐢
Go:
char := '\u9422'
fmt.Printf("%c\n", char) // Output: 鐢
CSS:
/* CSS content property */
.element::before {
content: "\009422"; /* 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%A2
MD5:
a9073d9e87c1bc3578bdba5b89f8dd55
SHA1:
e3e565e7b8ec4ddc59a209182f1e48aa5519e52a
Base64:
6ZCi