C:
char c = '\uA600';
printf("%c\n", c); // Output: ꘀ
JavaScript:
const char = '\uA600';
console.log(char); // Output: ꘀ
Java:
char c = '\uA600';
System.out.println(c); // Output: ꘀ
JSON:
{"text": "\uA600"} // Value: ꘀ
Python:
char = '\uA600'
print(char) # Output: ꘀ
Perl:
my $char = "\x{A600}";
print $char; # Output: ꘀ
PHP:
$char = "\x{A600}";
echo $char; // Output: ꘀ
Ruby:
char = "\u{A600}"
puts char # Output: ꘀ
Rust:
let c = '\u{A600}';
println!("{}", c); // Output: ꘀ
Go:
char := '\uA600'
fmt.Printf("%c\n", char) // Output: ꘀ
CSS:
/* CSS content property */
.element::before {
content: "\00A600"; /* 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=%EA%98%80
MD5:
1a8f67917ae130d38a45469db90c6ada
SHA1:
283cdc43090d95045ddef1cac5c7902f6718b63d
Base64:
6piA