C:
char c = '\u6017';
printf("%c\n", c); // Output: 怗
JavaScript:
const char = '\u6017';
console.log(char); // Output: 怗
Java:
char c = '\u6017';
System.out.println(c); // Output: 怗
JSON:
{"text": "\u6017"} // Value: 怗
Python:
char = '\u6017'
print(char) # Output: 怗
Perl:
my $char = "\x{6017}";
print $char; # Output: 怗
PHP:
$char = "\x{6017}";
echo $char; // Output: 怗
Ruby:
char = "\u{6017}"
puts char # Output: 怗
Rust:
let c = '\u{6017}';
println!("{}", c); // Output: 怗
Go:
char := '\u6017'
fmt.Printf("%c\n", char) // Output: 怗
CSS:
/* CSS content property */
.element::before {
content: "\006017"; /* 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%97
MD5:
f1748ba6eeae8c9c5308b58d1d327bc7
SHA1:
576fc8d32eb5d4329bb813350a3d66d7d9841a1b
Base64:
5oCX