C:
char c = '\u13A1';
printf("%c\n", c); // Output: Ꭱ
JavaScript:
const char = '\u13A1';
console.log(char); // Output: Ꭱ
Java:
char c = '\u13A1';
System.out.println(c); // Output: Ꭱ
JSON:
{"text": "\u13A1"} // Value: Ꭱ
Python:
char = '\u13A1'
print(char) # Output: Ꭱ
Perl:
my $char = "\x{13A1}";
print $char; # Output: Ꭱ
PHP:
$char = "\x{13A1}";
echo $char; // Output: Ꭱ
Ruby:
char = "\u{13A1}"
puts char # Output: Ꭱ
Rust:
let c = '\u{13A1}';
println!("{}", c); // Output: Ꭱ
Go:
char := '\u13A1'
fmt.Printf("%c\n", char) // Output: Ꭱ
CSS:
/* CSS content property */
.element::before {
content: "\0013A1"; /* 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%8E%A1
MD5:
df6d9cb5fda4a98a3c0c60c6952e22f2
SHA1:
bd1a935902842693dbcc6a8ebd560defef527f53
Base64:
4Y6h