C:
char c = '\u9781';
printf("%c\n", c); // Output: 鞁
JavaScript:
const char = '\u9781';
console.log(char); // Output: 鞁
Java:
char c = '\u9781';
System.out.println(c); // Output: 鞁
JSON:
{"text": "\u9781"} // Value: 鞁
Python:
char = '\u9781'
print(char) # Output: 鞁
Perl:
my $char = "\x{9781}";
print $char; # Output: 鞁
PHP:
$char = "\x{9781}";
echo $char; // Output: 鞁
Ruby:
char = "\u{9781}"
puts char # Output: 鞁
Rust:
let c = '\u{9781}';
println!("{}", c); // Output: 鞁
Go:
char := '\u9781'
fmt.Printf("%c\n", char) // Output: 鞁
CSS:
/* CSS content property */
.element::before {
content: "\009781"; /* 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%81
MD5:
44e9fc7a7de616ccea3bf514e18e71d2
SHA1:
a4721fe9aec70adb2f4b05fc7bdf83ab3b6b7f6e
Base64:
6Z6B