C:
char c = '\u6059';
printf("%c\n", c); // Output: 恙
JavaScript:
const char = '\u6059';
console.log(char); // Output: 恙
Java:
char c = '\u6059';
System.out.println(c); // Output: 恙
JSON:
{"text": "\u6059"} // Value: 恙
Python:
char = '\u6059'
print(char) # Output: 恙
Perl:
my $char = "\x{6059}";
print $char; # Output: 恙
PHP:
$char = "\x{6059}";
echo $char; // Output: 恙
Ruby:
char = "\u{6059}"
puts char # Output: 恙
Rust:
let c = '\u{6059}';
println!("{}", c); // Output: 恙
Go:
char := '\u6059'
fmt.Printf("%c\n", char) // Output: 恙
CSS:
/* CSS content property */
.element::before {
content: "\006059"; /* 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=%E6%81%99
MD5:
f1fa7e0f1607f96067271812d959cdc8
SHA1:
7a465785ebd490379648dee361ff6eab81ce2999
Base64:
5oGZ