C:
char c = '\u5411';
printf("%c\n", c); // Output: 向
JavaScript:
const char = '\u5411';
console.log(char); // Output: 向
Java:
char c = '\u5411';
System.out.println(c); // Output: 向
JSON:
{"text": "\u5411"} // Value: 向
Python:
char = '\u5411'
print(char) # Output: 向
Perl:
my $char = "\x{5411}";
print $char; # Output: 向
PHP:
$char = "\x{5411}";
echo $char; // Output: 向
Ruby:
char = "\u{5411}"
puts char # Output: 向
Rust:
let c = '\u{5411}';
println!("{}", c); // Output: 向
Go:
char := '\u5411'
fmt.Printf("%c\n", char) // Output: 向
CSS:
/* CSS content property */
.element::before {
content: "\005411"; /* 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%90%91
MD5:
a510ac9d05813b2434cf6596b5bbf685
SHA1:
6dbcceb7f0060a797fccced6f80df681bc6ee5ce
Base64:
5ZCR