C:
char c = '\u1468';
printf("%c\n", c); // Output: ᑨ
JavaScript:
const char = '\u1468';
console.log(char); // Output: ᑨ
Java:
char c = '\u1468';
System.out.println(c); // Output: ᑨ
JSON:
{"text": "\u1468"} // Value: ᑨ
Python:
char = '\u1468'
print(char) # Output: ᑨ
Perl:
my $char = "\x{1468}";
print $char; # Output: ᑨ
PHP:
$char = "\x{1468}";
echo $char; // Output: ᑨ
Ruby:
char = "\u{1468}"
puts char # Output: ᑨ
Rust:
let c = '\u{1468}';
println!("{}", c); // Output: ᑨ
Go:
char := '\u1468'
fmt.Printf("%c\n", char) // Output: ᑨ
CSS:
/* CSS content property */
.element::before {
content: "\001468"; /* 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%91%A8
MD5:
608d6ac73d0d9352b5f4fe914bb53fb0
SHA1:
fffce4210c8457ccc90850a042ed33b8a4667359
Base64:
4ZGo