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