C:
char c = '\u1169';
printf("%c\n", c); // Output: ᅩ
JavaScript:
const char = '\u1169';
console.log(char); // Output: ᅩ
Java:
char c = '\u1169';
System.out.println(c); // Output: ᅩ
JSON:
{"text": "\u1169"} // Value: ᅩ
Python:
char = '\u1169'
print(char) # Output: ᅩ
Perl:
my $char = "\x{1169}";
print $char; # Output: ᅩ
PHP:
$char = "\x{1169}";
echo $char; // Output: ᅩ
Ruby:
char = "\u{1169}"
puts char # Output: ᅩ
Rust:
let c = '\u{1169}';
println!("{}", c); // Output: ᅩ
Go:
char := '\u1169'
fmt.Printf("%c\n", char) // Output: ᅩ
CSS:
/* CSS content property */
.element::before {
content: "\001169"; /* 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%85%A9
MD5:
50826cb7cf91c451fa8c195046554ca1
SHA1:
c8fc1ff86ecea781153131fcf40982fe62d015f7
Base64:
4YWp