C:
char c = '\u8373';
printf("%c\n", c); // Output: 荳
JavaScript:
const char = '\u8373';
console.log(char); // Output: 荳
Java:
char c = '\u8373';
System.out.println(c); // Output: 荳
JSON:
{"text": "\u8373"} // Value: 荳
Python:
char = '\u8373'
print(char) # Output: 荳
Perl:
my $char = "\x{8373}";
print $char; # Output: 荳
PHP:
$char = "\x{8373}";
echo $char; // Output: 荳
Ruby:
char = "\u{8373}"
puts char # Output: 荳
Rust:
let c = '\u{8373}';
println!("{}", c); // Output: 荳
Go:
char := '\u8373'
fmt.Printf("%c\n", char) // Output: 荳
CSS:
/* CSS content property */
.element::before {
content: "\008373"; /* 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%B3
MD5:
f994984a8faaefe3b8ecb7a0d0b37a9b
SHA1:
90aeac11467d93492990fd92bd9f42516fe30944
Base64:
6I2z