C:
char c = '\u7908';
printf("%c\n", c); // Output: 礈
JavaScript:
const char = '\u7908';
console.log(char); // Output: 礈
Java:
char c = '\u7908';
System.out.println(c); // Output: 礈
JSON:
{"text": "\u7908"} // Value: 礈
Python:
char = '\u7908'
print(char) # Output: 礈
Perl:
my $char = "\x{7908}";
print $char; # Output: 礈
PHP:
$char = "\x{7908}";
echo $char; // Output: 礈
Ruby:
char = "\u{7908}"
puts char # Output: 礈
Rust:
let c = '\u{7908}';
println!("{}", c); // Output: 礈
Go:
char := '\u7908'
fmt.Printf("%c\n", char) // Output: 礈
CSS:
/* CSS content property */
.element::before {
content: "\007908"; /* 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%A4%88
MD5:
8a94e256a9ab3dc00bec7a81720f5232
SHA1:
f7399b353d2eacfb3eee62c0ea4f6f66f6599280
Base64:
56SI