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