C:
char c = '\u6113';
printf("%c\n", c); // Output: 愓
JavaScript:
const char = '\u6113';
console.log(char); // Output: 愓
Java:
char c = '\u6113';
System.out.println(c); // Output: 愓
JSON:
{"text": "\u6113"} // Value: 愓
Python:
char = '\u6113'
print(char) # Output: 愓
Perl:
my $char = "\x{6113}";
print $char; # Output: 愓
PHP:
$char = "\x{6113}";
echo $char; // Output: 愓
Ruby:
char = "\u{6113}"
puts char # Output: 愓
Rust:
let c = '\u{6113}';
println!("{}", c); // Output: 愓
Go:
char := '\u6113'
fmt.Printf("%c\n", char) // Output: 愓
CSS:
/* CSS content property */
.element::before {
content: "\006113"; /* 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%93
MD5:
e24bd7b1030f4af48d8df95f78ce2203
SHA1:
f464d81dda10296b514b05d5f15194d37acc80bf
Base64:
5oST