C:
char c = '\u8463';
printf("%c\n", c); // Output: 董
JavaScript:
const char = '\u8463';
console.log(char); // Output: 董
Java:
char c = '\u8463';
System.out.println(c); // Output: 董
JSON:
{"text": "\u8463"} // Value: 董
Python:
char = '\u8463'
print(char) # Output: 董
Perl:
my $char = "\x{8463}";
print $char; # Output: 董
PHP:
$char = "\x{8463}";
echo $char; // Output: 董
Ruby:
char = "\u{8463}"
puts char # Output: 董
Rust:
let c = '\u{8463}';
println!("{}", c); // Output: 董
Go:
char := '\u8463'
fmt.Printf("%c\n", char) // Output: 董
CSS:
/* CSS content property */
.element::before {
content: "\008463"; /* 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%91%A3
MD5:
0bdda4a641f7390f1789c1cc00c38192
SHA1:
d7e84091cbc0f9a3e21109871bc7c34d640257df
Base64:
6JGj