C:
char c = '\u72C1';
printf("%c\n", c); // Output: 狁
JavaScript:
const char = '\u72C1';
console.log(char); // Output: 狁
Java:
char c = '\u72C1';
System.out.println(c); // Output: 狁
JSON:
{"text": "\u72C1"} // Value: 狁
Python:
char = '\u72C1'
print(char) # Output: 狁
Perl:
my $char = "\x{72C1}";
print $char; # Output: 狁
PHP:
$char = "\x{72C1}";
echo $char; // Output: 狁
Ruby:
char = "\u{72C1}"
puts char # Output: 狁
Rust:
let c = '\u{72C1}';
println!("{}", c); // Output: 狁
Go:
char := '\u72C1'
fmt.Printf("%c\n", char) // Output: 狁
CSS:
/* CSS content property */
.element::before {
content: "\0072C1"; /* 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=%E7%8B%81
MD5:
334202402b4cdcd6548b7ce9b6780048
SHA1:
c70a6e46852fdab88d9ea428a8cedd78d9f8b42f
Base64:
54uB