C:
char c = '\u10AD';
printf("%c\n", c); // Output: Ⴍ
JavaScript:
const char = '\u10AD';
console.log(char); // Output: Ⴍ
Java:
char c = '\u10AD';
System.out.println(c); // Output: Ⴍ
JSON:
{"text": "\u10AD"} // Value: Ⴍ
Python:
char = '\u10AD'
print(char) # Output: Ⴍ
Perl:
my $char = "\x{10AD}";
print $char; # Output: Ⴍ
PHP:
$char = "\x{10AD}";
echo $char; // Output: Ⴍ
Ruby:
char = "\u{10AD}"
puts char # Output: Ⴍ
Rust:
let c = '\u{10AD}';
println!("{}", c); // Output: Ⴍ
Go:
char := '\u10AD'
fmt.Printf("%c\n", char) // Output: Ⴍ
CSS:
/* CSS content property */
.element::before {
content: "\0010AD"; /* 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%82%AD
MD5:
07319ea25a3096cee2463af8478b2016
SHA1:
dfecb64ed59c6ef8c7e273fdc497de093f7dff41
Base64:
4YKt