C:
char c = '\u6051';
printf("%c\n", c); // Output: 恑
JavaScript:
const char = '\u6051';
console.log(char); // Output: 恑
Java:
char c = '\u6051';
System.out.println(c); // Output: 恑
JSON:
{"text": "\u6051"} // Value: 恑
Python:
char = '\u6051'
print(char) # Output: 恑
Perl:
my $char = "\x{6051}";
print $char; # Output: 恑
PHP:
$char = "\x{6051}";
echo $char; // Output: 恑
Ruby:
char = "\u{6051}"
puts char # Output: 恑
Rust:
let c = '\u{6051}';
println!("{}", c); // Output: 恑
Go:
char := '\u6051'
fmt.Printf("%c\n", char) // Output: 恑
CSS:
/* CSS content property */
.element::before {
content: "\006051"; /* 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%81%91
MD5:
1fc2e8f7f351c8b49afdbe0514d27570
SHA1:
dc51fc41e5947c299600e8def76a810a809f0143
Base64:
5oGR