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