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