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