C:
char c = '\u5686';
printf("%c\n", c); // Output: 嚆
JavaScript:
const char = '\u5686';
console.log(char); // Output: 嚆
Java:
char c = '\u5686';
System.out.println(c); // Output: 嚆
JSON:
{"text": "\u5686"} // Value: 嚆
Python:
char = '\u5686'
print(char) # Output: 嚆
Perl:
my $char = "\x{5686}";
print $char; # Output: 嚆
PHP:
$char = "\x{5686}";
echo $char; // Output: 嚆
Ruby:
char = "\u{5686}"
puts char # Output: 嚆
Rust:
let c = '\u{5686}';
println!("{}", c); // Output: 嚆
Go:
char := '\u5686'
fmt.Printf("%c\n", char) // Output: 嚆
CSS:
/* CSS content property */
.element::before {
content: "\005686"; /* 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%9A%86
MD5:
c969bb72babc3484b45164c331d7a3f1
SHA1:
52e30cbcc0696f23019abf6ef8c53564b54e9029
Base64:
5ZqG