C:
char c = '\u9BA7';
printf("%c\n", c); // Output: 鮧
JavaScript:
const char = '\u9BA7';
console.log(char); // Output: 鮧
Java:
char c = '\u9BA7';
System.out.println(c); // Output: 鮧
JSON:
{"text": "\u9BA7"} // Value: 鮧
Python:
char = '\u9BA7'
print(char) # Output: 鮧
Perl:
my $char = "\x{9BA7}";
print $char; # Output: 鮧
PHP:
$char = "\x{9BA7}";
echo $char; // Output: 鮧
Ruby:
char = "\u{9BA7}"
puts char # Output: 鮧
Rust:
let c = '\u{9BA7}';
println!("{}", c); // Output: 鮧
Go:
char := '\u9BA7'
fmt.Printf("%c\n", char) // Output: 鮧
CSS:
/* CSS content property */
.element::before {
content: "\009BA7"; /* 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%AE%A7
MD5:
cd352e04d8151a802e8ebdae16a2b44f
SHA1:
683dda927cfe46a0d64364ee137295d183e7877b
Base64:
6a6n