C:
char c = '\u8312';
printf("%c\n", c); // Output: 茒
JavaScript:
const char = '\u8312';
console.log(char); // Output: 茒
Java:
char c = '\u8312';
System.out.println(c); // Output: 茒
JSON:
{"text": "\u8312"} // Value: 茒
Python:
char = '\u8312'
print(char) # Output: 茒
Perl:
my $char = "\x{8312}";
print $char; # Output: 茒
PHP:
$char = "\x{8312}";
echo $char; // Output: 茒
Ruby:
char = "\u{8312}"
puts char # Output: 茒
Rust:
let c = '\u{8312}';
println!("{}", c); // Output: 茒
Go:
char := '\u8312'
fmt.Printf("%c\n", char) // Output: 茒
CSS:
/* CSS content property */
.element::before {
content: "\008312"; /* 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%92
MD5:
f56809ab89617d484c3609e4519c4afe
SHA1:
5e228224656356b9a70a54e53c2b0484970452f9
Base64:
6IyS