C:
char c = '\u1405';
printf("%c\n", c); // Output: ᐅ
JavaScript:
const char = '\u1405';
console.log(char); // Output: ᐅ
Java:
char c = '\u1405';
System.out.println(c); // Output: ᐅ
JSON:
{"text": "\u1405"} // Value: ᐅ
Python:
char = '\u1405'
print(char) # Output: ᐅ
Perl:
my $char = "\x{1405}";
print $char; # Output: ᐅ
PHP:
$char = "\x{1405}";
echo $char; // Output: ᐅ
Ruby:
char = "\u{1405}"
puts char # Output: ᐅ
Rust:
let c = '\u{1405}';
println!("{}", c); // Output: ᐅ
Go:
char := '\u1405'
fmt.Printf("%c\n", char) // Output: ᐅ
CSS:
/* CSS content property */
.element::before {
content: "\001405"; /* 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%90%85
MD5:
db2d937c5f8e4733d7d6834a87c419a5
SHA1:
ce3e3b9bbf75405b231b01ffaa1ffd9b67f7687b
Base64:
4ZCF