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