C:
char c = '\u1613';
printf("%c\n", c); // Output: ᘓ
JavaScript:
const char = '\u1613';
console.log(char); // Output: ᘓ
Java:
char c = '\u1613';
System.out.println(c); // Output: ᘓ
JSON:
{"text": "\u1613"} // Value: ᘓ
Python:
char = '\u1613'
print(char) # Output: ᘓ
Perl:
my $char = "\x{1613}";
print $char; # Output: ᘓ
PHP:
$char = "\x{1613}";
echo $char; // Output: ᘓ
Ruby:
char = "\u{1613}"
puts char # Output: ᘓ
Rust:
let c = '\u{1613}';
println!("{}", c); // Output: ᘓ
Go:
char := '\u1613'
fmt.Printf("%c\n", char) // Output: ᘓ
CSS:
/* CSS content property */
.element::before {
content: "\001613"; /* 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%98%93
MD5:
a09262efceff01cba11acc171b9f6fa0
SHA1:
1a99b1da9fec16fe17a8d2705400fc74db8aca5c
Base64:
4ZiT