C:
char c = '\u1451';
printf("%c\n", c); // Output: ᑑ
JavaScript:
const char = '\u1451';
console.log(char); // Output: ᑑ
Java:
char c = '\u1451';
System.out.println(c); // Output: ᑑ
JSON:
{"text": "\u1451"} // Value: ᑑ
Python:
char = '\u1451'
print(char) # Output: ᑑ
Perl:
my $char = "\x{1451}";
print $char; # Output: ᑑ
PHP:
$char = "\x{1451}";
echo $char; // Output: ᑑ
Ruby:
char = "\u{1451}"
puts char # Output: ᑑ
Rust:
let c = '\u{1451}';
println!("{}", c); // Output: ᑑ
Go:
char := '\u1451'
fmt.Printf("%c\n", char) // Output: ᑑ
CSS:
/* CSS content property */
.element::before {
content: "\001451"; /* 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%91
MD5:
0c8a4cbebc48653951b48eea1f176d18
SHA1:
502300b6b79e6f9e7d838765d538cda342136715
Base64:
4ZGR