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