C:
char c = '\u6110';
printf("%c\n", c); // Output: 愐
JavaScript:
const char = '\u6110';
console.log(char); // Output: 愐
Java:
char c = '\u6110';
System.out.println(c); // Output: 愐
JSON:
{"text": "\u6110"} // Value: 愐
Python:
char = '\u6110'
print(char) # Output: 愐
Perl:
my $char = "\x{6110}";
print $char; # Output: 愐
PHP:
$char = "\x{6110}";
echo $char; // Output: 愐
Ruby:
char = "\u{6110}"
puts char # Output: 愐
Rust:
let c = '\u{6110}';
println!("{}", c); // Output: 愐
Go:
char := '\u6110'
fmt.Printf("%c\n", char) // Output: 愐
CSS:
/* CSS content property */
.element::before {
content: "\006110"; /* 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%84%90
MD5:
a6f55dd367acda3a8355ec9b0c791333
SHA1:
164a0ae69957b261e7dcd6b1614a02e0ed454835
Base64:
5oSQ