C:
char c = '\u8332';
printf("%c\n", c); // Output: 茲
JavaScript:
const char = '\u8332';
console.log(char); // Output: 茲
Java:
char c = '\u8332';
System.out.println(c); // Output: 茲
JSON:
{"text": "\u8332"} // Value: 茲
Python:
char = '\u8332'
print(char) # Output: 茲
Perl:
my $char = "\x{8332}";
print $char; # Output: 茲
PHP:
$char = "\x{8332}";
echo $char; // Output: 茲
Ruby:
char = "\u{8332}"
puts char # Output: 茲
Rust:
let c = '\u{8332}';
println!("{}", c); // Output: 茲
Go:
char := '\u8332'
fmt.Printf("%c\n", char) // Output: 茲
CSS:
/* CSS content property */
.element::before {
content: "\008332"; /* 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%B2
MD5:
1b17667ceeb333549cb41ca850fe2d91
SHA1:
d45e55b04850dc85f0d8c881f045f00357c54509
Base64:
6Iyy