C:
char c = '\u1621';
printf("%c\n", c); // Output: ᘡ
JavaScript:
const char = '\u1621';
console.log(char); // Output: ᘡ
Java:
char c = '\u1621';
System.out.println(c); // Output: ᘡ
JSON:
{"text": "\u1621"} // Value: ᘡ
Python:
char = '\u1621'
print(char) # Output: ᘡ
Perl:
my $char = "\x{1621}";
print $char; # Output: ᘡ
PHP:
$char = "\x{1621}";
echo $char; // Output: ᘡ
Ruby:
char = "\u{1621}"
puts char # Output: ᘡ
Rust:
let c = '\u{1621}';
println!("{}", c); // Output: ᘡ
Go:
char := '\u1621'
fmt.Printf("%c\n", char) // Output: ᘡ
CSS:
/* CSS content property */
.element::before {
content: "\001621"; /* 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%A1
MD5:
f08d41a3382dde30ee6634471335389e
SHA1:
023c89de17254cb5980af897e3ff7744da0de9b1
Base64:
4Zih