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