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