C:
char c = '\u7052';
printf("%c\n", c); // Output: 灒
JavaScript:
const char = '\u7052';
console.log(char); // Output: 灒
Java:
char c = '\u7052';
System.out.println(c); // Output: 灒
JSON:
{"text": "\u7052"} // Value: 灒
Python:
char = '\u7052'
print(char) # Output: 灒
Perl:
my $char = "\x{7052}";
print $char; # Output: 灒
PHP:
$char = "\x{7052}";
echo $char; // Output: 灒
Ruby:
char = "\u{7052}"
puts char # Output: 灒
Rust:
let c = '\u{7052}';
println!("{}", c); // Output: 灒
Go:
char := '\u7052'
fmt.Printf("%c\n", char) // Output: 灒
CSS:
/* CSS content property */
.element::before {
content: "\007052"; /* 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%92
MD5:
aceb0b3e6c21c2aad8ff01d9e1452655
SHA1:
368946024f169792f39dfd8c8034ec93c3ca52d3
Base64:
54GS