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