C:
char c = '\u5617';
printf("%c\n", c); // Output: 嘗
JavaScript:
const char = '\u5617';
console.log(char); // Output: 嘗
Java:
char c = '\u5617';
System.out.println(c); // Output: 嘗
JSON:
{"text": "\u5617"} // Value: 嘗
Python:
char = '\u5617'
print(char) # Output: 嘗
Perl:
my $char = "\x{5617}";
print $char; # Output: 嘗
PHP:
$char = "\x{5617}";
echo $char; // Output: 嘗
Ruby:
char = "\u{5617}"
puts char # Output: 嘗
Rust:
let c = '\u{5617}';
println!("{}", c); // Output: 嘗
Go:
char := '\u5617'
fmt.Printf("%c\n", char) // Output: 嘗
CSS:
/* CSS content property */
.element::before {
content: "\005617"; /* 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%97
MD5:
2a3c80b9ed975eb5413fd93852feb843
SHA1:
dace17afd1ee5e37df2f3399cc7cdd3f1de86ed7
Base64:
5ZiX