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