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