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