C:
char c = '\u5B9E';
printf("%c\n", c); // Output: 实
JavaScript:
const char = '\u5B9E';
console.log(char); // Output: 实
Java:
char c = '\u5B9E';
System.out.println(c); // Output: 实
JSON:
{"text": "\u5B9E"} // Value: 实
Python:
char = '\u5B9E'
print(char) # Output: 实
Perl:
my $char = "\x{5B9E}";
print $char; # Output: 实
PHP:
$char = "\x{5B9E}";
echo $char; // Output: 实
Ruby:
char = "\u{5B9E}"
puts char # Output: 实
Rust:
let c = '\u{5B9E}';
println!("{}", c); // Output: 实
Go:
char := '\u5B9E'
fmt.Printf("%c\n", char) // Output: 实
CSS:
/* CSS content property */
.element::before {
content: "\005B9E"; /* 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=%E5%AE%9E
MD5:
1eb9260ad4801fd5d75ec644fedb9d8e
SHA1:
0f84beea8ef88a1333218608d81dfb9a0a1714dc
Base64:
5a6e