C:
char c = '\u8355';
printf("%c\n", c); // Output: 荕
JavaScript:
const char = '\u8355';
console.log(char); // Output: 荕
Java:
char c = '\u8355';
System.out.println(c); // Output: 荕
JSON:
{"text": "\u8355"} // Value: 荕
Python:
char = '\u8355'
print(char) # Output: 荕
Perl:
my $char = "\x{8355}";
print $char; # Output: 荕
PHP:
$char = "\x{8355}";
echo $char; // Output: 荕
Ruby:
char = "\u{8355}"
puts char # Output: 荕
Rust:
let c = '\u{8355}';
println!("{}", c); // Output: 荕
Go:
char := '\u8355'
fmt.Printf("%c\n", char) // Output: 荕
CSS:
/* CSS content property */
.element::before {
content: "\008355"; /* 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%95
MD5:
c1bb3e74c7340759470aa21d9515fe9b
SHA1:
0b93f28be1401b823f48f79511edb0a5a6581179
Base64:
6I2V