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