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