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