C:
char c = '\u8347';
printf("%c\n", c); // Output: 荇
JavaScript:
const char = '\u8347';
console.log(char); // Output: 荇
Java:
char c = '\u8347';
System.out.println(c); // Output: 荇
JSON:
{"text": "\u8347"} // Value: 荇
Python:
char = '\u8347'
print(char) # Output: 荇
Perl:
my $char = "\x{8347}";
print $char; # Output: 荇
PHP:
$char = "\x{8347}";
echo $char; // Output: 荇
Ruby:
char = "\u{8347}"
puts char # Output: 荇
Rust:
let c = '\u{8347}';
println!("{}", c); // Output: 荇
Go:
char := '\u8347'
fmt.Printf("%c\n", char) // Output: 荇
CSS:
/* CSS content property */
.element::before {
content: "\008347"; /* 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%87
MD5:
d863bcf3b0bb85cedb58ecfdf2e308b7
SHA1:
e330c17d54ad853c5cb0f6391e7cd3611b37d671
Base64:
6I2H