C:
char c = '\u5409';
printf("%c\n", c); // Output: 吉
JavaScript:
const char = '\u5409';
console.log(char); // Output: 吉
Java:
char c = '\u5409';
System.out.println(c); // Output: 吉
JSON:
{"text": "\u5409"} // Value: 吉
Python:
char = '\u5409'
print(char) # Output: 吉
Perl:
my $char = "\x{5409}";
print $char; # Output: 吉
PHP:
$char = "\x{5409}";
echo $char; // Output: 吉
Ruby:
char = "\u{5409}"
puts char # Output: 吉
Rust:
let c = '\u{5409}';
println!("{}", c); // Output: 吉
Go:
char := '\u5409'
fmt.Printf("%c\n", char) // Output: 吉
CSS:
/* CSS content property */
.element::before {
content: "\005409"; /* 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%90%89
MD5:
cd45464d9deaf775b559f840220c6880
SHA1:
bf3d1661e1f7475517011f83c6edad2df0c3111c
Base64:
5ZCJ