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