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