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