C:
char c = '\u5E94';
printf("%c\n", c); // Output: 应
JavaScript:
const char = '\u5E94';
console.log(char); // Output: 应
Java:
char c = '\u5E94';
System.out.println(c); // Output: 应
JSON:
{"text": "\u5E94"} // Value: 应
Python:
char = '\u5E94'
print(char) # Output: 应
Perl:
my $char = "\x{5E94}";
print $char; # Output: 应
PHP:
$char = "\x{5E94}";
echo $char; // Output: 应
Ruby:
char = "\u{5E94}"
puts char # Output: 应
Rust:
let c = '\u{5E94}';
println!("{}", c); // Output: 应
Go:
char := '\u5E94'
fmt.Printf("%c\n", char) // Output: 应
CSS:
/* CSS content property */
.element::before {
content: "\005E94"; /* 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%BA%94
MD5:
3c899c370646fe23a8e57098401c0021
SHA1:
b3480eb01b72059ee26fe0a83ee7e3ea0011a18b
Base64:
5bqU