C:
char c = '\u1442';
printf("%c\n", c); // Output: ᑂ
JavaScript:
const char = '\u1442';
console.log(char); // Output: ᑂ
Java:
char c = '\u1442';
System.out.println(c); // Output: ᑂ
JSON:
{"text": "\u1442"} // Value: ᑂ
Python:
char = '\u1442'
print(char) # Output: ᑂ
Perl:
my $char = "\x{1442}";
print $char; # Output: ᑂ
PHP:
$char = "\x{1442}";
echo $char; // Output: ᑂ
Ruby:
char = "\u{1442}"
puts char # Output: ᑂ
Rust:
let c = '\u{1442}';
println!("{}", c); // Output: ᑂ
Go:
char := '\u1442'
fmt.Printf("%c\n", char) // Output: ᑂ
CSS:
/* CSS content property */
.element::before {
content: "\001442"; /* 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%82
MD5:
00f705b468ae4f56a7785aaa7d961ea7
SHA1:
704b577e2f49af9b04e299df4905ad6ac46d6cb9
Base64:
4ZGC