C:
char c = '\u6619';
printf("%c\n", c); // Output: 昙
JavaScript:
const char = '\u6619';
console.log(char); // Output: 昙
Java:
char c = '\u6619';
System.out.println(c); // Output: 昙
JSON:
{"text": "\u6619"} // Value: 昙
Python:
char = '\u6619'
print(char) # Output: 昙
Perl:
my $char = "\x{6619}";
print $char; # Output: 昙
PHP:
$char = "\x{6619}";
echo $char; // Output: 昙
Ruby:
char = "\u{6619}"
puts char # Output: 昙
Rust:
let c = '\u{6619}';
println!("{}", c); // Output: 昙
Go:
char := '\u6619'
fmt.Printf("%c\n", char) // Output: 昙
CSS:
/* CSS content property */
.element::before {
content: "\006619"; /* 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%98%99
MD5:
30978eb7ddba19c6af0cf000e857e27d
SHA1:
4dbff3194ae3c4d195d634aefe453251e6ef89eb
Base64:
5piZ