C:
char c = '\u5627';
printf("%c\n", c); // Output: 嘧
JavaScript:
const char = '\u5627';
console.log(char); // Output: 嘧
Java:
char c = '\u5627';
System.out.println(c); // Output: 嘧
JSON:
{"text": "\u5627"} // Value: 嘧
Python:
char = '\u5627'
print(char) # Output: 嘧
Perl:
my $char = "\x{5627}";
print $char; # Output: 嘧
PHP:
$char = "\x{5627}";
echo $char; // Output: 嘧
Ruby:
char = "\u{5627}"
puts char # Output: 嘧
Rust:
let c = '\u{5627}';
println!("{}", c); // Output: 嘧
Go:
char := '\u5627'
fmt.Printf("%c\n", char) // Output: 嘧
CSS:
/* CSS content property */
.element::before {
content: "\005627"; /* 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%98%A7
MD5:
11a0a2f719b6dd33a7f68ae7d49e2c2c
SHA1:
d49f2236165c1b19ab455c482ec2798e90f18666
Base64:
5Zin