C:
char c = '\u6200';
printf("%c\n", c); // Output: 戀
JavaScript:
const char = '\u6200';
console.log(char); // Output: 戀
Java:
char c = '\u6200';
System.out.println(c); // Output: 戀
JSON:
{"text": "\u6200"} // Value: 戀
Python:
char = '\u6200'
print(char) # Output: 戀
Perl:
my $char = "\x{6200}";
print $char; # Output: 戀
PHP:
$char = "\x{6200}";
echo $char; // Output: 戀
Ruby:
char = "\u{6200}"
puts char # Output: 戀
Rust:
let c = '\u{6200}';
println!("{}", c); // Output: 戀
Go:
char := '\u6200'
fmt.Printf("%c\n", char) // Output: 戀
CSS:
/* CSS content property */
.element::before {
content: "\006200"; /* 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%88%80
MD5:
db7439ca1ddfa45e20f3888c16807443
SHA1:
66a88c48c48728c863ffbbd5c04fb0a0093b1d8c
Base64:
5oiA