C:
char c = '\u7064';
printf("%c\n", c); // Output: 灤
JavaScript:
const char = '\u7064';
console.log(char); // Output: 灤
Java:
char c = '\u7064';
System.out.println(c); // Output: 灤
JSON:
{"text": "\u7064"} // Value: 灤
Python:
char = '\u7064'
print(char) # Output: 灤
Perl:
my $char = "\x{7064}";
print $char; # Output: 灤
PHP:
$char = "\x{7064}";
echo $char; // Output: 灤
Ruby:
char = "\u{7064}"
puts char # Output: 灤
Rust:
let c = '\u{7064}';
println!("{}", c); // Output: 灤
Go:
char := '\u7064'
fmt.Printf("%c\n", char) // Output: 灤
CSS:
/* CSS content property */
.element::before {
content: "\007064"; /* 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%A4
MD5:
719726f2f3142d00a6316c8bc9702c04
SHA1:
8605e230a07052b8982e89acea4040863c9ae0cf
Base64:
54Gk