C:
char c = '\u54C9';
printf("%c\n", c); // Output: 哉
JavaScript:
const char = '\u54C9';
console.log(char); // Output: 哉
Java:
char c = '\u54C9';
System.out.println(c); // Output: 哉
JSON:
{"text": "\u54C9"} // Value: 哉
Python:
char = '\u54C9'
print(char) # Output: 哉
Perl:
my $char = "\x{54C9}";
print $char; # Output: 哉
PHP:
$char = "\x{54C9}";
echo $char; // Output: 哉
Ruby:
char = "\u{54C9}"
puts char # Output: 哉
Rust:
let c = '\u{54C9}';
println!("{}", c); // Output: 哉
Go:
char := '\u54C9'
fmt.Printf("%c\n", char) // Output: 哉
CSS:
/* CSS content property */
.element::before {
content: "\0054C9"; /* 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%93%89
MD5:
8cbebaa8366db892d80f503d89e92704
SHA1:
a9174a11a2935f6ecd8152a6c4e72b644e60f4d9
Base64:
5ZOJ