C:
char c = '\u8368';
printf("%c\n", c); // Output: 荨
JavaScript:
const char = '\u8368';
console.log(char); // Output: 荨
Java:
char c = '\u8368';
System.out.println(c); // Output: 荨
JSON:
{"text": "\u8368"} // Value: 荨
Python:
char = '\u8368'
print(char) # Output: 荨
Perl:
my $char = "\x{8368}";
print $char; # Output: 荨
PHP:
$char = "\x{8368}";
echo $char; // Output: 荨
Ruby:
char = "\u{8368}"
puts char # Output: 荨
Rust:
let c = '\u{8368}';
println!("{}", c); // Output: 荨
Go:
char := '\u8368'
fmt.Printf("%c\n", char) // Output: 荨
CSS:
/* CSS content property */
.element::before {
content: "\008368"; /* 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%A8
MD5:
550aa7c41f19ab95e89b8cc885539a8b
SHA1:
e00d2d7240a13a6d8f6fc53e8454016029a05fa1
Base64:
6I2o