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