C:
char c = '\u5527';
printf("%c\n", c); // Output: 唧
JavaScript:
const char = '\u5527';
console.log(char); // Output: 唧
Java:
char c = '\u5527';
System.out.println(c); // Output: 唧
JSON:
{"text": "\u5527"} // Value: 唧
Python:
char = '\u5527'
print(char) # Output: 唧
Perl:
my $char = "\x{5527}";
print $char; # Output: 唧
PHP:
$char = "\x{5527}";
echo $char; // Output: 唧
Ruby:
char = "\u{5527}"
puts char # Output: 唧
Rust:
let c = '\u{5527}';
println!("{}", c); // Output: 唧
Go:
char := '\u5527'
fmt.Printf("%c\n", char) // Output: 唧
CSS:
/* CSS content property */
.element::before {
content: "\005527"; /* 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%94%A7
MD5:
bd66dbad5446c119b38b2ab20cb4d1e4
SHA1:
5885576008164928fb0efeb10da001eaaa73726b
Base64:
5ZSn