C:
char c = '\u7482';
printf("%c\n", c); // Output: 璂
JavaScript:
const char = '\u7482';
console.log(char); // Output: 璂
Java:
char c = '\u7482';
System.out.println(c); // Output: 璂
JSON:
{"text": "\u7482"} // Value: 璂
Python:
char = '\u7482'
print(char) # Output: 璂
Perl:
my $char = "\x{7482}";
print $char; # Output: 璂
PHP:
$char = "\x{7482}";
echo $char; // Output: 璂
Ruby:
char = "\u{7482}"
puts char # Output: 璂
Rust:
let c = '\u{7482}';
println!("{}", c); // Output: 璂
Go:
char := '\u7482'
fmt.Printf("%c\n", char) // Output: 璂
CSS:
/* CSS content property */
.element::before {
content: "\007482"; /* 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%92%82
MD5:
2a87ffd83ca7afba0dd2ab378e9acfcb
SHA1:
774a2cf46f67eeec2c7d6dc7d2c044c62e8a5d95
Base64:
55KC