C:
char c = '\u7048';
printf("%c\n", c); // Output: 灈
JavaScript:
const char = '\u7048';
console.log(char); // Output: 灈
Java:
char c = '\u7048';
System.out.println(c); // Output: 灈
JSON:
{"text": "\u7048"} // Value: 灈
Python:
char = '\u7048'
print(char) # Output: 灈
Perl:
my $char = "\x{7048}";
print $char; # Output: 灈
PHP:
$char = "\x{7048}";
echo $char; // Output: 灈
Ruby:
char = "\u{7048}"
puts char # Output: 灈
Rust:
let c = '\u{7048}';
println!("{}", c); // Output: 灈
Go:
char := '\u7048'
fmt.Printf("%c\n", char) // Output: 灈
CSS:
/* CSS content property */
.element::before {
content: "\007048"; /* 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%88
MD5:
bbaba2ee886e8cf7c5cb042db7eaf58e
SHA1:
420675849d7d95c4172615035cf95088d6d56ee5
Base64:
54GI