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