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