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