C:
char c = '\u7066';
printf("%c\n", c); // Output: 灦
JavaScript:
const char = '\u7066';
console.log(char); // Output: 灦
Java:
char c = '\u7066';
System.out.println(c); // Output: 灦
JSON:
{"text": "\u7066"} // Value: 灦
Python:
char = '\u7066'
print(char) # Output: 灦
Perl:
my $char = "\x{7066}";
print $char; # Output: 灦
PHP:
$char = "\x{7066}";
echo $char; // Output: 灦
Ruby:
char = "\u{7066}"
puts char # Output: 灦
Rust:
let c = '\u{7066}';
println!("{}", c); // Output: 灦
Go:
char := '\u7066'
fmt.Printf("%c\n", char) // Output: 灦
CSS:
/* CSS content property */
.element::before {
content: "\007066"; /* 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=%E7%81%A6
MD5:
d9335175bdcd83790711a108a7450fe3
SHA1:
860b013bff4d8910ffe1a3137198c3cf15fbd0e4
Base64:
54Gm