C:
char c = '\u8365';
printf("%c\n", c); // Output: 荥
JavaScript:
const char = '\u8365';
console.log(char); // Output: 荥
Java:
char c = '\u8365';
System.out.println(c); // Output: 荥
JSON:
{"text": "\u8365"} // Value: 荥
Python:
char = '\u8365'
print(char) # Output: 荥
Perl:
my $char = "\x{8365}";
print $char; # Output: 荥
PHP:
$char = "\x{8365}";
echo $char; // Output: 荥
Ruby:
char = "\u{8365}"
puts char # Output: 荥
Rust:
let c = '\u{8365}';
println!("{}", c); // Output: 荥
Go:
char := '\u8365'
fmt.Printf("%c\n", char) // Output: 荥
CSS:
/* CSS content property */
.element::before {
content: "\008365"; /* 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%A5
MD5:
03ac65353b60123d7e00962fc5c1a24c
SHA1:
e96d832f268ac91275ae354d58465cf077c682db
Base64:
6I2l