C:
char c = '\u5618';
printf("%c\n", c); // Output: 嘘
JavaScript:
const char = '\u5618';
console.log(char); // Output: 嘘
Java:
char c = '\u5618';
System.out.println(c); // Output: 嘘
JSON:
{"text": "\u5618"} // Value: 嘘
Python:
char = '\u5618'
print(char) # Output: 嘘
Perl:
my $char = "\x{5618}";
print $char; # Output: 嘘
PHP:
$char = "\x{5618}";
echo $char; // Output: 嘘
Ruby:
char = "\u{5618}"
puts char # Output: 嘘
Rust:
let c = '\u{5618}';
println!("{}", c); // Output: 嘘
Go:
char := '\u5618'
fmt.Printf("%c\n", char) // Output: 嘘
CSS:
/* CSS content property */
.element::before {
content: "\005618"; /* 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%98
MD5:
58fdbe080e7b8c454115c718b248bb86
SHA1:
bca793c339e05c1ab19906f18fe72d3f5a34d0d0
Base64:
5ZiY