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