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