C:
char c = '\u7AF1';
printf("%c\n", c); // Output: 竱
JavaScript:
const char = '\u7AF1';
console.log(char); // Output: 竱
Java:
char c = '\u7AF1';
System.out.println(c); // Output: 竱
JSON:
{"text": "\u7AF1"} // Value: 竱
Python:
char = '\u7AF1'
print(char) # Output: 竱
Perl:
my $char = "\x{7AF1}";
print $char; # Output: 竱
PHP:
$char = "\x{7AF1}";
echo $char; // Output: 竱
Ruby:
char = "\u{7AF1}"
puts char # Output: 竱
Rust:
let c = '\u{7AF1}';
println!("{}", c); // Output: 竱
Go:
char := '\u7AF1'
fmt.Printf("%c\n", char) // Output: 竱
CSS:
/* CSS content property */
.element::before {
content: "\007AF1"; /* 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%AB%B1
MD5:
cbd141628d5054d48e9660c2d44156d1
SHA1:
0f5b5b38e27c7fdb7086b9a82ac3dd8139043f03
Base64:
56ux