C:
char c = '\u9782';
printf("%c\n", c); // Output: 鞂
JavaScript:
const char = '\u9782';
console.log(char); // Output: 鞂
Java:
char c = '\u9782';
System.out.println(c); // Output: 鞂
JSON:
{"text": "\u9782"} // Value: 鞂
Python:
char = '\u9782'
print(char) # Output: 鞂
Perl:
my $char = "\x{9782}";
print $char; # Output: 鞂
PHP:
$char = "\x{9782}";
echo $char; // Output: 鞂
Ruby:
char = "\u{9782}"
puts char # Output: 鞂
Rust:
let c = '\u{9782}';
println!("{}", c); // Output: 鞂
Go:
char := '\u9782'
fmt.Printf("%c\n", char) // Output: 鞂
CSS:
/* CSS content property */
.element::before {
content: "\009782"; /* 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%9E%82
MD5:
1f4d280fd7d71d4e3f2653dd45d2ebe7
SHA1:
8bca3d853b34b1b672b1821ae9a12955af666164
Base64:
6Z6C