C:
char c = '\u1C28';
printf("%c\n", c); // Output: ᰨ
JavaScript:
const char = '\u1C28';
console.log(char); // Output: ᰨ
Java:
char c = '\u1C28';
System.out.println(c); // Output: ᰨ
JSON:
{"text": "\u1C28"} // Value: ᰨ
Python:
char = '\u1C28'
print(char) # Output: ᰨ
Perl:
my $char = "\x{1C28}";
print $char; # Output: ᰨ
PHP:
$char = "\x{1C28}";
echo $char; // Output: ᰨ
Ruby:
char = "\u{1C28}"
puts char # Output: ᰨ
Rust:
let c = '\u{1C28}';
println!("{}", c); // Output: ᰨ
Go:
char := '\u1C28'
fmt.Printf("%c\n", char) // Output: ᰨ
CSS:
/* CSS content property */
.element::before {
content: "\001C28"; /* 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=%E1%B0%A8
MD5:
acddd47ebcdc09a37cb79b748c7ee33b
SHA1:
660e6505f0c33b48f2f88841c78303e7a955bfc3
Base64:
4bCo