C:
char c = '\u99A1';
printf("%c\n", c); // Output: 馡
JavaScript:
const char = '\u99A1';
console.log(char); // Output: 馡
Java:
char c = '\u99A1';
System.out.println(c); // Output: 馡
JSON:
{"text": "\u99A1"} // Value: 馡
Python:
char = '\u99A1'
print(char) # Output: 馡
Perl:
my $char = "\x{99A1}";
print $char; # Output: 馡
PHP:
$char = "\x{99A1}";
echo $char; // Output: 馡
Ruby:
char = "\u{99A1}"
puts char # Output: 馡
Rust:
let c = '\u{99A1}';
println!("{}", c); // Output: 馡
Go:
char := '\u99A1'
fmt.Printf("%c\n", char) // Output: 馡
CSS:
/* CSS content property */
.element::before {
content: "\0099A1"; /* 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%A1
MD5:
d7f4eb37809f1b2727adcae485180eda
SHA1:
41e3b5e1cbfde51b170963001a21d9f599d15ee9
Base64:
6aah