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