C:
char c = '\u1143';
printf("%c\n", c); // Output: ᅃ
JavaScript:
const char = '\u1143';
console.log(char); // Output: ᅃ
Java:
char c = '\u1143';
System.out.println(c); // Output: ᅃ
JSON:
{"text": "\u1143"} // Value: ᅃ
Python:
char = '\u1143'
print(char) # Output: ᅃ
Perl:
my $char = "\x{1143}";
print $char; # Output: ᅃ
PHP:
$char = "\x{1143}";
echo $char; // Output: ᅃ
Ruby:
char = "\u{1143}"
puts char # Output: ᅃ
Rust:
let c = '\u{1143}';
println!("{}", c); // Output: ᅃ
Go:
char := '\u1143'
fmt.Printf("%c\n", char) // Output: ᅃ
CSS:
/* CSS content property */
.element::before {
content: "\001143"; /* 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%83
MD5:
3262926b31c058ee62195703e1352a05
SHA1:
fb60be219ef4bfdbac8fcb8cf9529b77a8d1f0af
Base64:
4YWD