C:
char c = '\u8307';
printf("%c\n", c); // Output: 茇
JavaScript:
const char = '\u8307';
console.log(char); // Output: 茇
Java:
char c = '\u8307';
System.out.println(c); // Output: 茇
JSON:
{"text": "\u8307"} // Value: 茇
Python:
char = '\u8307'
print(char) # Output: 茇
Perl:
my $char = "\x{8307}";
print $char; # Output: 茇
PHP:
$char = "\x{8307}";
echo $char; // Output: 茇
Ruby:
char = "\u{8307}"
puts char # Output: 茇
Rust:
let c = '\u{8307}';
println!("{}", c); // Output: 茇
Go:
char := '\u8307'
fmt.Printf("%c\n", char) // Output: 茇
CSS:
/* CSS content property */
.element::before {
content: "\008307"; /* 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%87
MD5:
2a90f8f72b4e4cfc1ef9c9f8c70abd23
SHA1:
57d2145716e8c86468b3fab011e66de0d56875e2
Base64:
6IyH