C:
char c = '\u7423';
printf("%c\n", c); // Output: 琣
JavaScript:
const char = '\u7423';
console.log(char); // Output: 琣
Java:
char c = '\u7423';
System.out.println(c); // Output: 琣
JSON:
{"text": "\u7423"} // Value: 琣
Python:
char = '\u7423'
print(char) # Output: 琣
Perl:
my $char = "\x{7423}";
print $char; # Output: 琣
PHP:
$char = "\x{7423}";
echo $char; // Output: 琣
Ruby:
char = "\u{7423}"
puts char # Output: 琣
Rust:
let c = '\u{7423}';
println!("{}", c); // Output: 琣
Go:
char := '\u7423'
fmt.Printf("%c\n", char) // Output: 琣
CSS:
/* CSS content property */
.element::before {
content: "\007423"; /* 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%A3
MD5:
2d313afd33c616fd016d8c8c33f4c9dc
SHA1:
a445d65d56eb76c3b835c14833821da428b3e379
Base64:
55Cj