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