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