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