C:
char c = '\u5692';
printf("%c\n", c); // Output: 嚒
JavaScript:
const char = '\u5692';
console.log(char); // Output: 嚒
Java:
char c = '\u5692';
System.out.println(c); // Output: 嚒
JSON:
{"text": "\u5692"} // Value: 嚒
Python:
char = '\u5692'
print(char) # Output: 嚒
Perl:
my $char = "\x{5692}";
print $char; # Output: 嚒
PHP:
$char = "\x{5692}";
echo $char; // Output: 嚒
Ruby:
char = "\u{5692}"
puts char # Output: 嚒
Rust:
let c = '\u{5692}';
println!("{}", c); // Output: 嚒
Go:
char := '\u5692'
fmt.Printf("%c\n", char) // Output: 嚒
CSS:
/* CSS content property */
.element::before {
content: "\005692"; /* 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%92
MD5:
20012c887dfd6012066242cd1904dd4b
SHA1:
bb2ef089219d92c71601bb8330a8e4afd2dab234
Base64:
5ZqS