C:
char c = '\u8A0F';
printf("%c\n", c); // Output: 訏
JavaScript:
const char = '\u8A0F';
console.log(char); // Output: 訏
Java:
char c = '\u8A0F';
System.out.println(c); // Output: 訏
JSON:
{"text": "\u8A0F"} // Value: 訏
Python:
char = '\u8A0F'
print(char) # Output: 訏
Perl:
my $char = "\x{8A0F}";
print $char; # Output: 訏
PHP:
$char = "\x{8A0F}";
echo $char; // Output: 訏
Ruby:
char = "\u{8A0F}"
puts char # Output: 訏
Rust:
let c = '\u{8A0F}';
println!("{}", c); // Output: 訏
Go:
char := '\u8A0F'
fmt.Printf("%c\n", char) // Output: 訏
CSS:
/* CSS content property */
.element::before {
content: "\008A0F"; /* 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%A8%8F
MD5:
089f794fd69ef4cf5fe2204f4f91e548
SHA1:
454b3553a3ec0ff13efce0fdaf28b38eed3683c9
Base64:
6KiP