C:
char c = '\u8330';
printf("%c\n", c); // Output: 茰
JavaScript:
const char = '\u8330';
console.log(char); // Output: 茰
Java:
char c = '\u8330';
System.out.println(c); // Output: 茰
JSON:
{"text": "\u8330"} // Value: 茰
Python:
char = '\u8330'
print(char) # Output: 茰
Perl:
my $char = "\x{8330}";
print $char; # Output: 茰
PHP:
$char = "\x{8330}";
echo $char; // Output: 茰
Ruby:
char = "\u{8330}"
puts char # Output: 茰
Rust:
let c = '\u{8330}';
println!("{}", c); // Output: 茰
Go:
char := '\u8330'
fmt.Printf("%c\n", char) // Output: 茰
CSS:
/* CSS content property */
.element::before {
content: "\008330"; /* 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%B0
MD5:
cff8bb8aec0a80a3cff5d874bdd2d607
SHA1:
55e275c90742a0ae9f7af4755af7792776276988
Base64:
6Iyw