C:
char c = '\u7411';
printf("%c\n", c); // Output: 琑
JavaScript:
const char = '\u7411';
console.log(char); // Output: 琑
Java:
char c = '\u7411';
System.out.println(c); // Output: 琑
JSON:
{"text": "\u7411"} // Value: 琑
Python:
char = '\u7411'
print(char) # Output: 琑
Perl:
my $char = "\x{7411}";
print $char; # Output: 琑
PHP:
$char = "\x{7411}";
echo $char; // Output: 琑
Ruby:
char = "\u{7411}"
puts char # Output: 琑
Rust:
let c = '\u{7411}';
println!("{}", c); // Output: 琑
Go:
char := '\u7411'
fmt.Printf("%c\n", char) // Output: 琑
CSS:
/* CSS content property */
.element::before {
content: "\007411"; /* 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%90%91
MD5:
3c6818f5c51a721178e2f54c92dda5a3
SHA1:
ab61daadd14e8f0238ee48cdfa141a5fe5a362b0
Base64:
55CR