C:
char c = '\u7436';
printf("%c\n", c); // Output: 琶
JavaScript:
const char = '\u7436';
console.log(char); // Output: 琶
Java:
char c = '\u7436';
System.out.println(c); // Output: 琶
JSON:
{"text": "\u7436"} // Value: 琶
Python:
char = '\u7436'
print(char) # Output: 琶
Perl:
my $char = "\x{7436}";
print $char; # Output: 琶
PHP:
$char = "\x{7436}";
echo $char; // Output: 琶
Ruby:
char = "\u{7436}"
puts char # Output: 琶
Rust:
let c = '\u{7436}';
println!("{}", c); // Output: 琶
Go:
char := '\u7436'
fmt.Printf("%c\n", char) // Output: 琶
CSS:
/* CSS content property */
.element::before {
content: "\007436"; /* 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%B6
MD5:
01e5f46953ada5ac6ce24b3c56cdf2d7
SHA1:
383c3b3afefdebefd05ef33a43692186a28df3f3
Base64:
55C2