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