C:
char c = '\u568A';
printf("%c\n", c); // Output: 嚊
JavaScript:
const char = '\u568A';
console.log(char); // Output: 嚊
Java:
char c = '\u568A';
System.out.println(c); // Output: 嚊
JSON:
{"text": "\u568A"} // Value: 嚊
Python:
char = '\u568A'
print(char) # Output: 嚊
Perl:
my $char = "\x{568A}";
print $char; # Output: 嚊
PHP:
$char = "\x{568A}";
echo $char; // Output: 嚊
Ruby:
char = "\u{568A}"
puts char # Output: 嚊
Rust:
let c = '\u{568A}';
println!("{}", c); // Output: 嚊
Go:
char := '\u568A'
fmt.Printf("%c\n", char) // Output: 嚊
CSS:
/* CSS content property */
.element::before {
content: "\00568A"; /* 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=%E5%9A%8A
MD5:
71090a7529a08860b635b4cfb7173451
SHA1:
44750b0f35aaabc7164dd6fd0dad265b8f588138
Base64:
5ZqK