C:
char c = '\u8AB1';
printf("%c\n", c); // Output: 誱
JavaScript:
const char = '\u8AB1';
console.log(char); // Output: 誱
Java:
char c = '\u8AB1';
System.out.println(c); // Output: 誱
JSON:
{"text": "\u8AB1"} // Value: 誱
Python:
char = '\u8AB1'
print(char) # Output: 誱
Perl:
my $char = "\x{8AB1}";
print $char; # Output: 誱
PHP:
$char = "\x{8AB1}";
echo $char; // Output: 誱
Ruby:
char = "\u{8AB1}"
puts char # Output: 誱
Rust:
let c = '\u{8AB1}';
println!("{}", c); // Output: 誱
Go:
char := '\u8AB1'
fmt.Printf("%c\n", char) // Output: 誱
CSS:
/* CSS content property */
.element::before {
content: "\008AB1"; /* 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=%E8%AA%B1
MD5:
80eb5f3c8e7f7230c494ebbb3f4aa3a6
SHA1:
0af53ef1419ff9389448c1bbbb21a6580d77cd98
Base64:
6Kqx