C:
char c = '\u7432';
printf("%c\n", c); // Output: 琲
JavaScript:
const char = '\u7432';
console.log(char); // Output: 琲
Java:
char c = '\u7432';
System.out.println(c); // Output: 琲
JSON:
{"text": "\u7432"} // Value: 琲
Python:
char = '\u7432'
print(char) # Output: 琲
Perl:
my $char = "\x{7432}";
print $char; # Output: 琲
PHP:
$char = "\x{7432}";
echo $char; // Output: 琲
Ruby:
char = "\u{7432}"
puts char # Output: 琲
Rust:
let c = '\u{7432}';
println!("{}", c); // Output: 琲
Go:
char := '\u7432'
fmt.Printf("%c\n", char) // Output: 琲
CSS:
/* CSS content property */
.element::before {
content: "\007432"; /* 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%B2
MD5:
b1521799769bda71c0273031f6bafc0f
SHA1:
36f0009af81c3858e3c13f9725020d4e1a244771
Base64:
55Cy