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