C:
char c = '\u7068';
printf("%c\n", c); // Output: 灨
JavaScript:
const char = '\u7068';
console.log(char); // Output: 灨
Java:
char c = '\u7068';
System.out.println(c); // Output: 灨
JSON:
{"text": "\u7068"} // Value: 灨
Python:
char = '\u7068'
print(char) # Output: 灨
Perl:
my $char = "\x{7068}";
print $char; # Output: 灨
PHP:
$char = "\x{7068}";
echo $char; // Output: 灨
Ruby:
char = "\u{7068}"
puts char # Output: 灨
Rust:
let c = '\u{7068}';
println!("{}", c); // Output: 灨
Go:
char := '\u7068'
fmt.Printf("%c\n", char) // Output: 灨
CSS:
/* CSS content property */
.element::before {
content: "\007068"; /* 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%A8
MD5:
e2d3a497492dedf18a1a12c35d22d541
SHA1:
24959e73e9219469e3e772e6fca8240e8a4e56c5
Base64:
54Go