C:
char c = '\u6023';
printf("%c\n", c); // Output: 怣
JavaScript:
const char = '\u6023';
console.log(char); // Output: 怣
Java:
char c = '\u6023';
System.out.println(c); // Output: 怣
JSON:
{"text": "\u6023"} // Value: 怣
Python:
char = '\u6023'
print(char) # Output: 怣
Perl:
my $char = "\x{6023}";
print $char; # Output: 怣
PHP:
$char = "\x{6023}";
echo $char; // Output: 怣
Ruby:
char = "\u{6023}"
puts char # Output: 怣
Rust:
let c = '\u{6023}';
println!("{}", c); // Output: 怣
Go:
char := '\u6023'
fmt.Printf("%c\n", char) // Output: 怣
CSS:
/* CSS content property */
.element::before {
content: "\006023"; /* 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%A3
MD5:
20813c6ed2d997f43024089a2f580951
SHA1:
5846627ddb17c78e8fe7e954ae5d547198c4ad9d
Base64:
5oCj