C:
char c = '\u7435';
printf("%c\n", c); // Output: 琵
JavaScript:
const char = '\u7435';
console.log(char); // Output: 琵
Java:
char c = '\u7435';
System.out.println(c); // Output: 琵
JSON:
{"text": "\u7435"} // Value: 琵
Python:
char = '\u7435'
print(char) # Output: 琵
Perl:
my $char = "\x{7435}";
print $char; # Output: 琵
PHP:
$char = "\x{7435}";
echo $char; // Output: 琵
Ruby:
char = "\u{7435}"
puts char # Output: 琵
Rust:
let c = '\u{7435}';
println!("{}", c); // Output: 琵
Go:
char := '\u7435'
fmt.Printf("%c\n", char) // Output: 琵
CSS:
/* CSS content property */
.element::before {
content: "\007435"; /* 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%B5
MD5:
53203300f121f8e552f95aee96293c1b
SHA1:
255bcbfaf9cb97cbe5e9616feb5730f62d77afbb
Base64:
55C1