C:
char c = '\u1FA3';
printf("%c\n", c); // Output: ᾣ
JavaScript:
const char = '\u1FA3';
console.log(char); // Output: ᾣ
Java:
char c = '\u1FA3';
System.out.println(c); // Output: ᾣ
JSON:
{"text": "\u1FA3"} // Value: ᾣ
Python:
char = '\u1FA3'
print(char) # Output: ᾣ
Perl:
my $char = "\x{1FA3}";
print $char; # Output: ᾣ
PHP:
$char = "\x{1FA3}";
echo $char; // Output: ᾣ
Ruby:
char = "\u{1FA3}"
puts char # Output: ᾣ
Rust:
let c = '\u{1FA3}';
println!("{}", c); // Output: ᾣ
Go:
char := '\u1FA3'
fmt.Printf("%c\n", char) // Output: ᾣ
CSS:
/* CSS content property */
.element::before {
content: "\001FA3"; /* 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%BE%A3
MD5:
495896adae43dec3157f436c0523b601
SHA1:
9f0c39ee7eaea62a0a099975f8021ae4156322a6
Base64:
4b6j