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