C:
char c = '\u8374';
printf("%c\n", c); // Output: 荴
JavaScript:
const char = '\u8374';
console.log(char); // Output: 荴
Java:
char c = '\u8374';
System.out.println(c); // Output: 荴
JSON:
{"text": "\u8374"} // Value: 荴
Python:
char = '\u8374'
print(char) # Output: 荴
Perl:
my $char = "\x{8374}";
print $char; # Output: 荴
PHP:
$char = "\x{8374}";
echo $char; // Output: 荴
Ruby:
char = "\u{8374}"
puts char # Output: 荴
Rust:
let c = '\u{8374}';
println!("{}", c); // Output: 荴
Go:
char := '\u8374'
fmt.Printf("%c\n", char) // Output: 荴
CSS:
/* CSS content property */
.element::before {
content: "\008374"; /* 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%B4
MD5:
23743d393d533b6ce3302aba5fa7d745
SHA1:
6126530d21ce884fe9b8e6ca2f616ef828aa3118
Base64:
6I20