C:
char c = '\u7062';
printf("%c\n", c); // Output: 灢
JavaScript:
const char = '\u7062';
console.log(char); // Output: 灢
Java:
char c = '\u7062';
System.out.println(c); // Output: 灢
JSON:
{"text": "\u7062"} // Value: 灢
Python:
char = '\u7062'
print(char) # Output: 灢
Perl:
my $char = "\x{7062}";
print $char; # Output: 灢
PHP:
$char = "\x{7062}";
echo $char; // Output: 灢
Ruby:
char = "\u{7062}"
puts char # Output: 灢
Rust:
let c = '\u{7062}';
println!("{}", c); // Output: 灢
Go:
char := '\u7062'
fmt.Printf("%c\n", char) // Output: 灢
CSS:
/* CSS content property */
.element::before {
content: "\007062"; /* 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%A2
MD5:
741b18f256ba780efb3f6ef32b1196c0
SHA1:
b471f376370eda2445e5fa41585491816a6e1d8c
Base64:
54Gi