C:
char c = '\u7968';
printf("%c\n", c); // Output: 票
JavaScript:
const char = '\u7968';
console.log(char); // Output: 票
Java:
char c = '\u7968';
System.out.println(c); // Output: 票
JSON:
{"text": "\u7968"} // Value: 票
Python:
char = '\u7968'
print(char) # Output: 票
Perl:
my $char = "\x{7968}";
print $char; # Output: 票
PHP:
$char = "\x{7968}";
echo $char; // Output: 票
Ruby:
char = "\u{7968}"
puts char # Output: 票
Rust:
let c = '\u{7968}';
println!("{}", c); // Output: 票
Go:
char := '\u7968'
fmt.Printf("%c\n", char) // Output: 票
CSS:
/* CSS content property */
.element::before {
content: "\007968"; /* 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=%E7%A5%A8
MD5:
e46f3b4fe1a0808410a71e3f06d20f4d
SHA1:
e7965fd28e0f31401471b2c5ac267bbcbd45bf78
Base64:
56Wo