C:
char c = '\u85AA';
printf("%c\n", c); // Output: 薪
JavaScript:
const char = '\u85AA';
console.log(char); // Output: 薪
Java:
char c = '\u85AA';
System.out.println(c); // Output: 薪
JSON:
{"text": "\u85AA"} // Value: 薪
Python:
char = '\u85AA'
print(char) # Output: 薪
Perl:
my $char = "\x{85AA}";
print $char; # Output: 薪
PHP:
$char = "\x{85AA}";
echo $char; // Output: 薪
Ruby:
char = "\u{85AA}"
puts char # Output: 薪
Rust:
let c = '\u{85AA}';
println!("{}", c); // Output: 薪
Go:
char := '\u85AA'
fmt.Printf("%c\n", char) // Output: 薪
CSS:
/* CSS content property */
.element::before {
content: "\0085AA"; /* 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%AA
MD5:
86b092d98277bc0e95eceab3204a2dfa
SHA1:
63eb2c7f01b4560649499a9e8984094867ddcdb1
Base64:
6Jaq