C:
char c = '\u53E5';
printf("%c\n", c); // Output: 句
JavaScript:
const char = '\u53E5';
console.log(char); // Output: 句
Java:
char c = '\u53E5';
System.out.println(c); // Output: 句
JSON:
{"text": "\u53E5"} // Value: 句
Python:
char = '\u53E5'
print(char) # Output: 句
Perl:
my $char = "\x{53E5}";
print $char; # Output: 句
PHP:
$char = "\x{53E5}";
echo $char; // Output: 句
Ruby:
char = "\u{53E5}"
puts char # Output: 句
Rust:
let c = '\u{53E5}';
println!("{}", c); // Output: 句
Go:
char := '\u53E5'
fmt.Printf("%c\n", char) // Output: 句
CSS:
/* CSS content property */
.element::before {
content: "\0053E5"; /* 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%8F%A5
MD5:
e1b9163e385c0855f4994b8d4e4945ee
SHA1:
27df1ce63cbd7f1efd5ef077991cfcefaa5c04d6
Base64:
5Y+l