C:
char c = '\u1C63';
printf("%c\n", c); // Output: ᱣ
JavaScript:
const char = '\u1C63';
console.log(char); // Output: ᱣ
Java:
char c = '\u1C63';
System.out.println(c); // Output: ᱣ
JSON:
{"text": "\u1C63"} // Value: ᱣ
Python:
char = '\u1C63'
print(char) # Output: ᱣ
Perl:
my $char = "\x{1C63}";
print $char; # Output: ᱣ
PHP:
$char = "\x{1C63}";
echo $char; // Output: ᱣ
Ruby:
char = "\u{1C63}"
puts char # Output: ᱣ
Rust:
let c = '\u{1C63}';
println!("{}", c); // Output: ᱣ
Go:
char := '\u1C63'
fmt.Printf("%c\n", char) // Output: ᱣ
CSS:
/* CSS content property */
.element::before {
content: "\001C63"; /* 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%B1%A3
MD5:
9532aa8db33ea1673567c74b47c27702
SHA1:
89195d83e62014e5ec259dc80e1bcd5a5eae70b2
Base64:
4bGj