C:
char c = '\u8366';
printf("%c\n", c); // Output: 荦
JavaScript:
const char = '\u8366';
console.log(char); // Output: 荦
Java:
char c = '\u8366';
System.out.println(c); // Output: 荦
JSON:
{"text": "\u8366"} // Value: 荦
Python:
char = '\u8366'
print(char) # Output: 荦
Perl:
my $char = "\x{8366}";
print $char; # Output: 荦
PHP:
$char = "\x{8366}";
echo $char; // Output: 荦
Ruby:
char = "\u{8366}"
puts char # Output: 荦
Rust:
let c = '\u{8366}';
println!("{}", c); // Output: 荦
Go:
char := '\u8366'
fmt.Printf("%c\n", char) // Output: 荦
CSS:
/* CSS content property */
.element::before {
content: "\008366"; /* 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%A6
MD5:
74c34e3ea95850bc96f4749c52050172
SHA1:
ca45bcb8e4868c4bfcb6bacbdf1b90110c6369eb
Base64:
6I2m