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