C:
char c = '\u1457';
printf("%c\n", c); // Output: ᑗ
JavaScript:
const char = '\u1457';
console.log(char); // Output: ᑗ
Java:
char c = '\u1457';
System.out.println(c); // Output: ᑗ
JSON:
{"text": "\u1457"} // Value: ᑗ
Python:
char = '\u1457'
print(char) # Output: ᑗ
Perl:
my $char = "\x{1457}";
print $char; # Output: ᑗ
PHP:
$char = "\x{1457}";
echo $char; // Output: ᑗ
Ruby:
char = "\u{1457}"
puts char # Output: ᑗ
Rust:
let c = '\u{1457}';
println!("{}", c); // Output: ᑗ
Go:
char := '\u1457'
fmt.Printf("%c\n", char) // Output: ᑗ
CSS:
/* CSS content property */
.element::before {
content: "\001457"; /* 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%97
MD5:
c533dd8f3ed4d453d8df1feedd62b63d
SHA1:
1637b5a3293fbffa23373346dec154de7df81825
Base64:
4ZGX