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