C:
char c = '\u6022';
printf("%c\n", c); // Output: 怢
JavaScript:
const char = '\u6022';
console.log(char); // Output: 怢
Java:
char c = '\u6022';
System.out.println(c); // Output: 怢
JSON:
{"text": "\u6022"} // Value: 怢
Python:
char = '\u6022'
print(char) # Output: 怢
Perl:
my $char = "\x{6022}";
print $char; # Output: 怢
PHP:
$char = "\x{6022}";
echo $char; // Output: 怢
Ruby:
char = "\u{6022}"
puts char # Output: 怢
Rust:
let c = '\u{6022}';
println!("{}", c); // Output: 怢
Go:
char := '\u6022'
fmt.Printf("%c\n", char) // Output: 怢
CSS:
/* CSS content property */
.element::before {
content: "\006022"; /* 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%A2
MD5:
e2969af4d4f783583ab63ead0c7e4fe8
SHA1:
40e43759c69622e662111919dbcc98fea0e5212e
Base64:
5oCi