C:
char c = '\u8362';
printf("%c\n", c); // Output: 荢
JavaScript:
const char = '\u8362';
console.log(char); // Output: 荢
Java:
char c = '\u8362';
System.out.println(c); // Output: 荢
JSON:
{"text": "\u8362"} // Value: 荢
Python:
char = '\u8362'
print(char) # Output: 荢
Perl:
my $char = "\x{8362}";
print $char; # Output: 荢
PHP:
$char = "\x{8362}";
echo $char; // Output: 荢
Ruby:
char = "\u{8362}"
puts char # Output: 荢
Rust:
let c = '\u{8362}';
println!("{}", c); // Output: 荢
Go:
char := '\u8362'
fmt.Printf("%c\n", char) // Output: 荢
CSS:
/* CSS content property */
.element::before {
content: "\008362"; /* 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%A2
MD5:
37320db88a574743022b71c7bef5abda
SHA1:
ec95ed683a8fbd3594211381fd188a41ae0ae021
Base64:
6I2i