C:
char c = '\u8325';
printf("%c\n", c); // Output: 茥
JavaScript:
const char = '\u8325';
console.log(char); // Output: 茥
Java:
char c = '\u8325';
System.out.println(c); // Output: 茥
JSON:
{"text": "\u8325"} // Value: 茥
Python:
char = '\u8325'
print(char) # Output: 茥
Perl:
my $char = "\x{8325}";
print $char; # Output: 茥
PHP:
$char = "\x{8325}";
echo $char; // Output: 茥
Ruby:
char = "\u{8325}"
puts char # Output: 茥
Rust:
let c = '\u{8325}';
println!("{}", c); // Output: 茥
Go:
char := '\u8325'
fmt.Printf("%c\n", char) // Output: 茥
CSS:
/* CSS content property */
.element::before {
content: "\008325"; /* 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%A5
MD5:
16a7cc3ddb2e9d17dc93f6ac62ed7625
SHA1:
c0f6141d3d909444f6882f438452b7c51c01f049
Base64:
6Iyl