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