C:
char c = '\u9995';
printf("%c\n", c); // Output: 馕
JavaScript:
const char = '\u9995';
console.log(char); // Output: 馕
Java:
char c = '\u9995';
System.out.println(c); // Output: 馕
JSON:
{"text": "\u9995"} // Value: 馕
Python:
char = '\u9995'
print(char) # Output: 馕
Perl:
my $char = "\x{9995}";
print $char; # Output: 馕
PHP:
$char = "\x{9995}";
echo $char; // Output: 馕
Ruby:
char = "\u{9995}"
puts char # Output: 馕
Rust:
let c = '\u{9995}';
println!("{}", c); // Output: 馕
Go:
char := '\u9995'
fmt.Printf("%c\n", char) // Output: 馕
CSS:
/* CSS content property */
.element::before {
content: "\009995"; /* 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%95
MD5:
8883e943ab204662a2d58f886a8e8661
SHA1:
208836c8a1b51111a8a10abd14f8834c05b18cf8
Base64:
6aaV