C:
char c = '\u6050';
printf("%c\n", c); // Output: 恐
JavaScript:
const char = '\u6050';
console.log(char); // Output: 恐
Java:
char c = '\u6050';
System.out.println(c); // Output: 恐
JSON:
{"text": "\u6050"} // Value: 恐
Python:
char = '\u6050'
print(char) # Output: 恐
Perl:
my $char = "\x{6050}";
print $char; # Output: 恐
PHP:
$char = "\x{6050}";
echo $char; // Output: 恐
Ruby:
char = "\u{6050}"
puts char # Output: 恐
Rust:
let c = '\u{6050}';
println!("{}", c); // Output: 恐
Go:
char := '\u6050'
fmt.Printf("%c\n", char) // Output: 恐
CSS:
/* CSS content property */
.element::before {
content: "\006050"; /* 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%90
MD5:
8e1df6c7e43fa1c8afc7ecbad5703b85
SHA1:
840fa49342f8237c2daab6f164d29bc039e27641
Base64:
5oGQ