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