C:
char c = '\u6002';
printf("%c\n", c); // Output: 怂
JavaScript:
const char = '\u6002';
console.log(char); // Output: 怂
Java:
char c = '\u6002';
System.out.println(c); // Output: 怂
JSON:
{"text": "\u6002"} // Value: 怂
Python:
char = '\u6002'
print(char) # Output: 怂
Perl:
my $char = "\x{6002}";
print $char; # Output: 怂
PHP:
$char = "\x{6002}";
echo $char; // Output: 怂
Ruby:
char = "\u{6002}"
puts char # Output: 怂
Rust:
let c = '\u{6002}';
println!("{}", c); // Output: 怂
Go:
char := '\u6002'
fmt.Printf("%c\n", char) // Output: 怂
CSS:
/* CSS content property */
.element::before {
content: "\006002"; /* 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%82
MD5:
c7baccef6916186c492f517a089d1430
SHA1:
494d63e7505c39b970da955552334815287666ca
Base64:
5oCC