C:
char c = '\u6126';
printf("%c\n", c); // Output: 愦
JavaScript:
const char = '\u6126';
console.log(char); // Output: 愦
Java:
char c = '\u6126';
System.out.println(c); // Output: 愦
JSON:
{"text": "\u6126"} // Value: 愦
Python:
char = '\u6126'
print(char) # Output: 愦
Perl:
my $char = "\x{6126}";
print $char; # Output: 愦
PHP:
$char = "\x{6126}";
echo $char; // Output: 愦
Ruby:
char = "\u{6126}"
puts char # Output: 愦
Rust:
let c = '\u{6126}';
println!("{}", c); // Output: 愦
Go:
char := '\u6126'
fmt.Printf("%c\n", char) // Output: 愦
CSS:
/* CSS content property */
.element::before {
content: "\006126"; /* 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%A6
MD5:
224fa651b9396ab954d4fa8491ed587b
SHA1:
a6932316dd6b54d8b0e67d5a2bad728f823e3343
Base64:
5oSm