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