C:
char c = '\u8301';
printf("%c\n", c); // Output: 茁
JavaScript:
const char = '\u8301';
console.log(char); // Output: 茁
Java:
char c = '\u8301';
System.out.println(c); // Output: 茁
JSON:
{"text": "\u8301"} // Value: 茁
Python:
char = '\u8301'
print(char) # Output: 茁
Perl:
my $char = "\x{8301}";
print $char; # Output: 茁
PHP:
$char = "\x{8301}";
echo $char; // Output: 茁
Ruby:
char = "\u{8301}"
puts char # Output: 茁
Rust:
let c = '\u{8301}';
println!("{}", c); // Output: 茁
Go:
char := '\u8301'
fmt.Printf("%c\n", char) // Output: 茁
CSS:
/* CSS content property */
.element::before {
content: "\008301"; /* 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%81
MD5:
a136f50b85cd4394e51ba352dbf8e5e5
SHA1:
00c8d452bcd6ed6923be3c5209faed8387d3d8bf
Base64:
6IyB