C:
char c = '\u7650';
printf("%c\n", c); // Output: 癐
JavaScript:
const char = '\u7650';
console.log(char); // Output: 癐
Java:
char c = '\u7650';
System.out.println(c); // Output: 癐
JSON:
{"text": "\u7650"} // Value: 癐
Python:
char = '\u7650'
print(char) # Output: 癐
Perl:
my $char = "\x{7650}";
print $char; # Output: 癐
PHP:
$char = "\x{7650}";
echo $char; // Output: 癐
Ruby:
char = "\u{7650}"
puts char # Output: 癐
Rust:
let c = '\u{7650}';
println!("{}", c); // Output: 癐
Go:
char := '\u7650'
fmt.Printf("%c\n", char) // Output: 癐
CSS:
/* CSS content property */
.element::before {
content: "\007650"; /* 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%90
MD5:
ce21922b4fa7572fc22083a2ef108c0e
SHA1:
3bf5fd7d3a674ef4a5251c8d8ac5cb225cee6458
Base64:
55mQ