C:
char c = '\u1469';
printf("%c\n", c); // Output: ᑩ
JavaScript:
const char = '\u1469';
console.log(char); // Output: ᑩ
Java:
char c = '\u1469';
System.out.println(c); // Output: ᑩ
JSON:
{"text": "\u1469"} // Value: ᑩ
Python:
char = '\u1469'
print(char) # Output: ᑩ
Perl:
my $char = "\x{1469}";
print $char; # Output: ᑩ
PHP:
$char = "\x{1469}";
echo $char; // Output: ᑩ
Ruby:
char = "\u{1469}"
puts char # Output: ᑩ
Rust:
let c = '\u{1469}';
println!("{}", c); // Output: ᑩ
Go:
char := '\u1469'
fmt.Printf("%c\n", char) // Output: ᑩ
CSS:
/* CSS content property */
.element::before {
content: "\001469"; /* 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%A9
MD5:
86aaeabbbeb737e5af371d04744588f5
SHA1:
8f7f57ad48f937a41b818780c02077e32de83b35
Base64:
4ZGp