C:
char c = '\u7420';
printf("%c\n", c); // Output: 琠
JavaScript:
const char = '\u7420';
console.log(char); // Output: 琠
Java:
char c = '\u7420';
System.out.println(c); // Output: 琠
JSON:
{"text": "\u7420"} // Value: 琠
Python:
char = '\u7420'
print(char) # Output: 琠
Perl:
my $char = "\x{7420}";
print $char; # Output: 琠
PHP:
$char = "\x{7420}";
echo $char; // Output: 琠
Ruby:
char = "\u{7420}"
puts char # Output: 琠
Rust:
let c = '\u{7420}';
println!("{}", c); // Output: 琠
Go:
char := '\u7420'
fmt.Printf("%c\n", char) // Output: 琠
CSS:
/* CSS content property */
.element::before {
content: "\007420"; /* 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%A0
MD5:
34fd6e64f70b0683ed6609954a7b3a88
SHA1:
03fddce506831e495a13f38bcdbdfe302402bde1
Base64:
55Cg