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