C:
char c = '\u8310';
printf("%c\n", c); // Output: 茐
JavaScript:
const char = '\u8310';
console.log(char); // Output: 茐
Java:
char c = '\u8310';
System.out.println(c); // Output: 茐
JSON:
{"text": "\u8310"} // Value: 茐
Python:
char = '\u8310'
print(char) # Output: 茐
Perl:
my $char = "\x{8310}";
print $char; # Output: 茐
PHP:
$char = "\x{8310}";
echo $char; // Output: 茐
Ruby:
char = "\u{8310}"
puts char # Output: 茐
Rust:
let c = '\u{8310}';
println!("{}", c); // Output: 茐
Go:
char := '\u8310'
fmt.Printf("%c\n", char) // Output: 茐
CSS:
/* CSS content property */
.element::before {
content: "\008310"; /* 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%8C%90
MD5:
51d292026e17557586d3d4ed43a456a9
SHA1:
96837a7e03251d30d6d2a2c6fdfd4d20375296af
Base64:
6IyQ