C:
char c = '\u608D';
printf("%c\n", c); // Output: 悍
JavaScript:
const char = '\u608D';
console.log(char); // Output: 悍
Java:
char c = '\u608D';
System.out.println(c); // Output: 悍
JSON:
{"text": "\u608D"} // Value: 悍
Python:
char = '\u608D'
print(char) # Output: 悍
Perl:
my $char = "\x{608D}";
print $char; # Output: 悍
PHP:
$char = "\x{608D}";
echo $char; // Output: 悍
Ruby:
char = "\u{608D}"
puts char # Output: 悍
Rust:
let c = '\u{608D}';
println!("{}", c); // Output: 悍
Go:
char := '\u608D'
fmt.Printf("%c\n", char) // Output: 悍
CSS:
/* CSS content property */
.element::before {
content: "\00608D"; /* 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%82%8D
MD5:
f9d2f8ba7c38906504b75a3bccb12f05
SHA1:
10161638a44d8c770ce201f2fae5aee2af591031
Base64:
5oKN