C:
char c = '\u7653';
printf("%c\n", c); // Output: 癓
JavaScript:
const char = '\u7653';
console.log(char); // Output: 癓
Java:
char c = '\u7653';
System.out.println(c); // Output: 癓
JSON:
{"text": "\u7653"} // Value: 癓
Python:
char = '\u7653'
print(char) # Output: 癓
Perl:
my $char = "\x{7653}";
print $char; # Output: 癓
PHP:
$char = "\x{7653}";
echo $char; // Output: 癓
Ruby:
char = "\u{7653}"
puts char # Output: 癓
Rust:
let c = '\u{7653}';
println!("{}", c); // Output: 癓
Go:
char := '\u7653'
fmt.Printf("%c\n", char) // Output: 癓
CSS:
/* CSS content property */
.element::before {
content: "\007653"; /* 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%99%93
MD5:
b6c5257db5397dc830d34192541007ac
SHA1:
15cf36931b9f376db77fd34fa4707b33ae96f96c
Base64:
55mT