C:
char c = '\u5859';
printf("%c\n", c); // Output: 塙
JavaScript:
const char = '\u5859';
console.log(char); // Output: 塙
Java:
char c = '\u5859';
System.out.println(c); // Output: 塙
JSON:
{"text": "\u5859"} // Value: 塙
Python:
char = '\u5859'
print(char) # Output: 塙
Perl:
my $char = "\x{5859}";
print $char; # Output: 塙
PHP:
$char = "\x{5859}";
echo $char; // Output: 塙
Ruby:
char = "\u{5859}"
puts char # Output: 塙
Rust:
let c = '\u{5859}';
println!("{}", c); // Output: 塙
Go:
char := '\u5859'
fmt.Printf("%c\n", char) // Output: 塙
CSS:
/* CSS content property */
.element::before {
content: "\005859"; /* 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%A1%99
MD5:
d98a4f62f0a10312a12280cc58eb4de3
SHA1:
9ea2156015b351da5a953b04d4bdf2501e585565
Base64:
5aGZ