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