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