C:
char c = '\u1461';
printf("%c\n", c); // Output: ᑡ
JavaScript:
const char = '\u1461';
console.log(char); // Output: ᑡ
Java:
char c = '\u1461';
System.out.println(c); // Output: ᑡ
JSON:
{"text": "\u1461"} // Value: ᑡ
Python:
char = '\u1461'
print(char) # Output: ᑡ
Perl:
my $char = "\x{1461}";
print $char; # Output: ᑡ
PHP:
$char = "\x{1461}";
echo $char; // Output: ᑡ
Ruby:
char = "\u{1461}"
puts char # Output: ᑡ
Rust:
let c = '\u{1461}';
println!("{}", c); // Output: ᑡ
Go:
char := '\u1461'
fmt.Printf("%c\n", char) // Output: ᑡ
CSS:
/* CSS content property */
.element::before {
content: "\001461"; /* 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%91%A1
MD5:
301261d8a1706fe5cc5b9c2292011f1f
SHA1:
7f3e1548b0cd1dc1b86a097a8357ea64d6215d2b
Base64:
4ZGh