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