C:
char c = '\u8AAB';
printf("%c\n", c); // Output: 誫
JavaScript:
const char = '\u8AAB';
console.log(char); // Output: 誫
Java:
char c = '\u8AAB';
System.out.println(c); // Output: 誫
JSON:
{"text": "\u8AAB"} // Value: 誫
Python:
char = '\u8AAB'
print(char) # Output: 誫
Perl:
my $char = "\x{8AAB}";
print $char; # Output: 誫
PHP:
$char = "\x{8AAB}";
echo $char; // Output: 誫
Ruby:
char = "\u{8AAB}"
puts char # Output: 誫
Rust:
let c = '\u{8AAB}';
println!("{}", c); // Output: 誫
Go:
char := '\u8AAB'
fmt.Printf("%c\n", char) // Output: 誫
CSS:
/* CSS content property */
.element::before {
content: "\008AAB"; /* 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%AB
MD5:
f1b71345b6a541ade755076df73a91ee
SHA1:
35766208ad6455434fc869f76e6a2ffa85964fee
Base64:
6Kqr