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