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