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