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