C:
char c = '\u6130';
printf("%c\n", c); // Output: 愰
JavaScript:
const char = '\u6130';
console.log(char); // Output: 愰
Java:
char c = '\u6130';
System.out.println(c); // Output: 愰
JSON:
{"text": "\u6130"} // Value: 愰
Python:
char = '\u6130'
print(char) # Output: 愰
Perl:
my $char = "\x{6130}";
print $char; # Output: 愰
PHP:
$char = "\x{6130}";
echo $char; // Output: 愰
Ruby:
char = "\u{6130}"
puts char # Output: 愰
Rust:
let c = '\u{6130}';
println!("{}", c); // Output: 愰
Go:
char := '\u6130'
fmt.Printf("%c\n", char) // Output: 愰
CSS:
/* CSS content property */
.element::before {
content: "\006130"; /* 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%B0
MD5:
2fd06dd21d79151e3a9e3f54f60aa77a
SHA1:
e6f9f43294cf843d11c8006d735fad238ecfdf56
Base64:
5oSw