C:
char c = '\u1403';
printf("%c\n", c); // Output: ᐃ
JavaScript:
const char = '\u1403';
console.log(char); // Output: ᐃ
Java:
char c = '\u1403';
System.out.println(c); // Output: ᐃ
JSON:
{"text": "\u1403"} // Value: ᐃ
Python:
char = '\u1403'
print(char) # Output: ᐃ
Perl:
my $char = "\x{1403}";
print $char; # Output: ᐃ
PHP:
$char = "\x{1403}";
echo $char; // Output: ᐃ
Ruby:
char = "\u{1403}"
puts char # Output: ᐃ
Rust:
let c = '\u{1403}';
println!("{}", c); // Output: ᐃ
Go:
char := '\u1403'
fmt.Printf("%c\n", char) // Output: ᐃ
CSS:
/* CSS content property */
.element::before {
content: "\001403"; /* 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%83
MD5:
4ba8cf2a3b8e44e6e0f3f5cd5b7f3cf6
SHA1:
9191be6f36708a446568ff8aba0174c336757bf2
Base64:
4ZCD