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