C:
char c = '\u8328';
printf("%c\n", c); // Output: 茨
JavaScript:
const char = '\u8328';
console.log(char); // Output: 茨
Java:
char c = '\u8328';
System.out.println(c); // Output: 茨
JSON:
{"text": "\u8328"} // Value: 茨
Python:
char = '\u8328'
print(char) # Output: 茨
Perl:
my $char = "\x{8328}";
print $char; # Output: 茨
PHP:
$char = "\x{8328}";
echo $char; // Output: 茨
Ruby:
char = "\u{8328}"
puts char # Output: 茨
Rust:
let c = '\u{8328}';
println!("{}", c); // Output: 茨
Go:
char := '\u8328'
fmt.Printf("%c\n", char) // Output: 茨
CSS:
/* CSS content property */
.element::before {
content: "\008328"; /* 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%A8
MD5:
eae891a3fc82c81aa676baa6290b062c
SHA1:
88026d2940409c2c2866514289afa8abf807d874
Base64:
6Iyo