C:
char c = '\u9618';
printf("%c\n", c); // Output: 阘
JavaScript:
const char = '\u9618';
console.log(char); // Output: 阘
Java:
char c = '\u9618';
System.out.println(c); // Output: 阘
JSON:
{"text": "\u9618"} // Value: 阘
Python:
char = '\u9618'
print(char) # Output: 阘
Perl:
my $char = "\x{9618}";
print $char; # Output: 阘
PHP:
$char = "\x{9618}";
echo $char; // Output: 阘
Ruby:
char = "\u{9618}"
puts char # Output: 阘
Rust:
let c = '\u{9618}';
println!("{}", c); // Output: 阘
Go:
char := '\u9618'
fmt.Printf("%c\n", char) // Output: 阘
CSS:
/* CSS content property */
.element::before {
content: "\009618"; /* 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=%E9%98%98
MD5:
cf85a162ee1c16688bec88deddd82df3
SHA1:
76e89a8f2dd72a6c1bd55c26f09e59e5265ca5aa
Base64:
6ZiY