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