C:
char c = '\u8356';
printf("%c\n", c); // Output: 荖
JavaScript:
const char = '\u8356';
console.log(char); // Output: 荖
Java:
char c = '\u8356';
System.out.println(c); // Output: 荖
JSON:
{"text": "\u8356"} // Value: 荖
Python:
char = '\u8356'
print(char) # Output: 荖
Perl:
my $char = "\x{8356}";
print $char; # Output: 荖
PHP:
$char = "\x{8356}";
echo $char; // Output: 荖
Ruby:
char = "\u{8356}"
puts char # Output: 荖
Rust:
let c = '\u{8356}';
println!("{}", c); // Output: 荖
Go:
char := '\u8356'
fmt.Printf("%c\n", char) // Output: 荖
CSS:
/* CSS content property */
.element::before {
content: "\008356"; /* 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%96
MD5:
ae74b7e2cd56b329d9972577d54ba601
SHA1:
068dddfb7149c60a5184d8d4819c8dc667ef71e9
Base64:
6I2W