C:
char c = '\u1663';
printf("%c\n", c); // Output: ᙣ
JavaScript:
const char = '\u1663';
console.log(char); // Output: ᙣ
Java:
char c = '\u1663';
System.out.println(c); // Output: ᙣ
JSON:
{"text": "\u1663"} // Value: ᙣ
Python:
char = '\u1663'
print(char) # Output: ᙣ
Perl:
my $char = "\x{1663}";
print $char; # Output: ᙣ
PHP:
$char = "\x{1663}";
echo $char; // Output: ᙣ
Ruby:
char = "\u{1663}"
puts char # Output: ᙣ
Rust:
let c = '\u{1663}';
println!("{}", c); // Output: ᙣ
Go:
char := '\u1663'
fmt.Printf("%c\n", char) // Output: ᙣ
CSS:
/* CSS content property */
.element::before {
content: "\001663"; /* 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%99%A3
MD5:
61fbf512ca1d47f90b6a2d57f626c6c1
SHA1:
00382e697d2dba75de30ea76d5defda7413cd062
Base64:
4Zmj