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