C:
char c = '\u6019';
printf("%c\n", c); // Output: 怙
JavaScript:
const char = '\u6019';
console.log(char); // Output: 怙
Java:
char c = '\u6019';
System.out.println(c); // Output: 怙
JSON:
{"text": "\u6019"} // Value: 怙
Python:
char = '\u6019'
print(char) # Output: 怙
Perl:
my $char = "\x{6019}";
print $char; # Output: 怙
PHP:
$char = "\x{6019}";
echo $char; // Output: 怙
Ruby:
char = "\u{6019}"
puts char # Output: 怙
Rust:
let c = '\u{6019}';
println!("{}", c); // Output: 怙
Go:
char := '\u6019'
fmt.Printf("%c\n", char) // Output: 怙
CSS:
/* CSS content property */
.element::before {
content: "\006019"; /* 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%99
MD5:
ab5e4a7f5d0dd41dde6f5819c86c6a0c
SHA1:
3d1a8457425f36ead312fcdedde8f159ea2e8dc7
Base64:
5oCZ