C:
char c = '\u1C01';
printf("%c\n", c); // Output: ᰁ
JavaScript:
const char = '\u1C01';
console.log(char); // Output: ᰁ
Java:
char c = '\u1C01';
System.out.println(c); // Output: ᰁ
JSON:
{"text": "\u1C01"} // Value: ᰁ
Python:
char = '\u1C01'
print(char) # Output: ᰁ
Perl:
my $char = "\x{1C01}";
print $char; # Output: ᰁ
PHP:
$char = "\x{1C01}";
echo $char; // Output: ᰁ
Ruby:
char = "\u{1C01}"
puts char # Output: ᰁ
Rust:
let c = '\u{1C01}';
println!("{}", c); // Output: ᰁ
Go:
char := '\u1C01'
fmt.Printf("%c\n", char) // Output: ᰁ
CSS:
/* CSS content property */
.element::before {
content: "\001C01"; /* 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%81
MD5:
45e3a4b9a3df2ebdece101e5fd50f2d5
SHA1:
357f794ebe26ab563d8e8320f64182316518c8c3
Base64:
4bCB