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