C:
char c = '\u6009';
printf("%c\n", c); // Output: 怉
JavaScript:
const char = '\u6009';
console.log(char); // Output: 怉
Java:
char c = '\u6009';
System.out.println(c); // Output: 怉
JSON:
{"text": "\u6009"} // Value: 怉
Python:
char = '\u6009'
print(char) # Output: 怉
Perl:
my $char = "\x{6009}";
print $char; # Output: 怉
PHP:
$char = "\x{6009}";
echo $char; // Output: 怉
Ruby:
char = "\u{6009}"
puts char # Output: 怉
Rust:
let c = '\u{6009}';
println!("{}", c); // Output: 怉
Go:
char := '\u6009'
fmt.Printf("%c\n", char) // Output: 怉
CSS:
/* CSS content property */
.element::before {
content: "\006009"; /* 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=%E6%80%89
MD5:
118e1e14a70656921b812c28514c9e95
SHA1:
0d7880e62645b0c77c25e0719c9215e26c7492fd
Base64:
5oCJ