C:
char c = '\u9019';
printf("%c\n", c); // Output: 這
JavaScript:
const char = '\u9019';
console.log(char); // Output: 這
Java:
char c = '\u9019';
System.out.println(c); // Output: 這
JSON:
{"text": "\u9019"} // Value: 這
Python:
char = '\u9019'
print(char) # Output: 這
Perl:
my $char = "\x{9019}";
print $char; # Output: 這
PHP:
$char = "\x{9019}";
echo $char; // Output: 這
Ruby:
char = "\u{9019}"
puts char # Output: 這
Rust:
let c = '\u{9019}';
println!("{}", c); // Output: 這
Go:
char := '\u9019'
fmt.Printf("%c\n", char) // Output: 這
CSS:
/* CSS content property */
.element::before {
content: "\009019"; /* 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=%E9%80%99
MD5:
eef15e51436dc99197fc0bf4b54d47f0
SHA1:
c3733f486e3a10edf531e3e73f9fce36224f7213
Base64:
6YCZ