C:
char c = '\u6029';
printf("%c\n", c); // Output: 怩
JavaScript:
const char = '\u6029';
console.log(char); // Output: 怩
Java:
char c = '\u6029';
System.out.println(c); // Output: 怩
JSON:
{"text": "\u6029"} // Value: 怩
Python:
char = '\u6029'
print(char) # Output: 怩
Perl:
my $char = "\x{6029}";
print $char; # Output: 怩
PHP:
$char = "\x{6029}";
echo $char; // Output: 怩
Ruby:
char = "\u{6029}"
puts char # Output: 怩
Rust:
let c = '\u{6029}';
println!("{}", c); // Output: 怩
Go:
char := '\u6029'
fmt.Printf("%c\n", char) // Output: 怩
CSS:
/* CSS content property */
.element::before {
content: "\006029"; /* 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%A9
MD5:
281689dbe01a3395fc47bde1f4950acb
SHA1:
7ad97f5dc94da144dfec54a71474f4eb4d091b1b
Base64:
5oCp