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