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