C:
char c = '\u1454';
printf("%c\n", c); // Output: ᑔ
JavaScript:
const char = '\u1454';
console.log(char); // Output: ᑔ
Java:
char c = '\u1454';
System.out.println(c); // Output: ᑔ
JSON:
{"text": "\u1454"} // Value: ᑔ
Python:
char = '\u1454'
print(char) # Output: ᑔ
Perl:
my $char = "\x{1454}";
print $char; # Output: ᑔ
PHP:
$char = "\x{1454}";
echo $char; // Output: ᑔ
Ruby:
char = "\u{1454}"
puts char # Output: ᑔ
Rust:
let c = '\u{1454}';
println!("{}", c); // Output: ᑔ
Go:
char := '\u1454'
fmt.Printf("%c\n", char) // Output: ᑔ
CSS:
/* CSS content property */
.element::before {
content: "\001454"; /* 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%94
MD5:
408de649fa98cebe8b844d911e8daa03
SHA1:
5252a03942e830c203745cbf71dde53ebd255b9e
Base64:
4ZGU