C:
char c = '\u5693';
printf("%c\n", c); // Output: 嚓
JavaScript:
const char = '\u5693';
console.log(char); // Output: 嚓
Java:
char c = '\u5693';
System.out.println(c); // Output: 嚓
JSON:
{"text": "\u5693"} // Value: 嚓
Python:
char = '\u5693'
print(char) # Output: 嚓
Perl:
my $char = "\x{5693}";
print $char; # Output: 嚓
PHP:
$char = "\x{5693}";
echo $char; // Output: 嚓
Ruby:
char = "\u{5693}"
puts char # Output: 嚓
Rust:
let c = '\u{5693}';
println!("{}", c); // Output: 嚓
Go:
char := '\u5693'
fmt.Printf("%c\n", char) // Output: 嚓
CSS:
/* CSS content property */
.element::before {
content: "\005693"; /* 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%93
MD5:
eb3e77b6fb1e0638f4fc95e1cec035c2
SHA1:
d253c623eb8ba5b2847966bb983c55ecb91ccf4f
Base64:
5ZqT