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