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