C:
char c = '\u1503';
printf("%c\n", c); // Output: ᔃ
JavaScript:
const char = '\u1503';
console.log(char); // Output: ᔃ
Java:
char c = '\u1503';
System.out.println(c); // Output: ᔃ
JSON:
{"text": "\u1503"} // Value: ᔃ
Python:
char = '\u1503'
print(char) # Output: ᔃ
Perl:
my $char = "\x{1503}";
print $char; # Output: ᔃ
PHP:
$char = "\x{1503}";
echo $char; // Output: ᔃ
Ruby:
char = "\u{1503}"
puts char # Output: ᔃ
Rust:
let c = '\u{1503}';
println!("{}", c); // Output: ᔃ
Go:
char := '\u1503'
fmt.Printf("%c\n", char) // Output: ᔃ
CSS:
/* CSS content property */
.element::before {
content: "\001503"; /* 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%94%83
MD5:
44299c444e04e7a722b82affc218a39f
SHA1:
3e07b5cb74cd5440214309e5aab89416cbeb7530
Base64:
4ZSD