C:
char c = '\u7481';
printf("%c\n", c); // Output: 璁
JavaScript:
const char = '\u7481';
console.log(char); // Output: 璁
Java:
char c = '\u7481';
System.out.println(c); // Output: 璁
JSON:
{"text": "\u7481"} // Value: 璁
Python:
char = '\u7481'
print(char) # Output: 璁
Perl:
my $char = "\x{7481}";
print $char; # Output: 璁
PHP:
$char = "\x{7481}";
echo $char; // Output: 璁
Ruby:
char = "\u{7481}"
puts char # Output: 璁
Rust:
let c = '\u{7481}';
println!("{}", c); // Output: 璁
Go:
char := '\u7481'
fmt.Printf("%c\n", char) // Output: 璁
CSS:
/* CSS content property */
.element::before {
content: "\007481"; /* 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%81
MD5:
a2242bee4264115077e93b4a2b37705e
SHA1:
f382e8d7f91f7b93a4367dacb2a355f49bcc271e
Base64:
55KB