C:
char c = '\u9989';
printf("%c\n", c); // Output: 馉
JavaScript:
const char = '\u9989';
console.log(char); // Output: 馉
Java:
char c = '\u9989';
System.out.println(c); // Output: 馉
JSON:
{"text": "\u9989"} // Value: 馉
Python:
char = '\u9989'
print(char) # Output: 馉
Perl:
my $char = "\x{9989}";
print $char; # Output: 馉
PHP:
$char = "\x{9989}";
echo $char; // Output: 馉
Ruby:
char = "\u{9989}"
puts char # Output: 馉
Rust:
let c = '\u{9989}';
println!("{}", c); // Output: 馉
Go:
char := '\u9989'
fmt.Printf("%c\n", char) // Output: 馉
CSS:
/* CSS content property */
.element::before {
content: "\009989"; /* 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%A6%89
MD5:
7ff982f4dcabc160765ee276da89e9dd
SHA1:
180d39bdacd7e610a3d5755fbb6488dd78292930
Base64:
6aaJ