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