C:
char c = '\u8725';
printf("%c\n", c); // Output: 蜥
JavaScript:
const char = '\u8725';
console.log(char); // Output: 蜥
Java:
char c = '\u8725';
System.out.println(c); // Output: 蜥
JSON:
{"text": "\u8725"} // Value: 蜥
Python:
char = '\u8725'
print(char) # Output: 蜥
Perl:
my $char = "\x{8725}";
print $char; # Output: 蜥
PHP:
$char = "\x{8725}";
echo $char; // Output: 蜥
Ruby:
char = "\u{8725}"
puts char # Output: 蜥
Rust:
let c = '\u{8725}';
println!("{}", c); // Output: 蜥
Go:
char := '\u8725'
fmt.Printf("%c\n", char) // Output: 蜥
CSS:
/* CSS content property */
.element::before {
content: "\008725"; /* 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=%E8%9C%A5
MD5:
5992d09db612390eba0901d939f9a678
SHA1:
4c8378bb740901b43ef5c249a588839b50bd037f
Base64:
6Jyl