C:
char c = '\u6021';
printf("%c\n", c); // Output: 怡
JavaScript:
const char = '\u6021';
console.log(char); // Output: 怡
Java:
char c = '\u6021';
System.out.println(c); // Output: 怡
JSON:
{"text": "\u6021"} // Value: 怡
Python:
char = '\u6021'
print(char) # Output: 怡
Perl:
my $char = "\x{6021}";
print $char; # Output: 怡
PHP:
$char = "\x{6021}";
echo $char; // Output: 怡
Ruby:
char = "\u{6021}"
puts char # Output: 怡
Rust:
let c = '\u{6021}';
println!("{}", c); // Output: 怡
Go:
char := '\u6021'
fmt.Printf("%c\n", char) // Output: 怡
CSS:
/* CSS content property */
.element::before {
content: "\006021"; /* 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%A1
MD5:
49326642c81d37ad01cc1d76d634f53b
SHA1:
bdae3705a73610730b1f1fc8c1798536748e60be
Base64:
5oCh