C:
char c = '\u1452';
printf("%c\n", c); // Output: ᑒ
JavaScript:
const char = '\u1452';
console.log(char); // Output: ᑒ
Java:
char c = '\u1452';
System.out.println(c); // Output: ᑒ
JSON:
{"text": "\u1452"} // Value: ᑒ
Python:
char = '\u1452'
print(char) # Output: ᑒ
Perl:
my $char = "\x{1452}";
print $char; # Output: ᑒ
PHP:
$char = "\x{1452}";
echo $char; // Output: ᑒ
Ruby:
char = "\u{1452}"
puts char # Output: ᑒ
Rust:
let c = '\u{1452}';
println!("{}", c); // Output: ᑒ
Go:
char := '\u1452'
fmt.Printf("%c\n", char) // Output: ᑒ
CSS:
/* CSS content property */
.element::before {
content: "\001452"; /* 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%92
MD5:
da36d738040cc9fab07c246a3ad6dd41
SHA1:
2eafdefad31cca695a7aa1792f347671db025293
Base64:
4ZGS