C:
char c = '\u162B';
printf("%c\n", c); // Output: ᘫ
JavaScript:
const char = '\u162B';
console.log(char); // Output: ᘫ
Java:
char c = '\u162B';
System.out.println(c); // Output: ᘫ
JSON:
{"text": "\u162B"} // Value: ᘫ
Python:
char = '\u162B'
print(char) # Output: ᘫ
Perl:
my $char = "\x{162B}";
print $char; # Output: ᘫ
PHP:
$char = "\x{162B}";
echo $char; // Output: ᘫ
Ruby:
char = "\u{162B}"
puts char # Output: ᘫ
Rust:
let c = '\u{162B}';
println!("{}", c); // Output: ᘫ
Go:
char := '\u162B'
fmt.Printf("%c\n", char) // Output: ᘫ
CSS:
/* CSS content property */
.element::before {
content: "\00162B"; /* 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%AB
MD5:
d940667db0da5cc4ab1efbaf3cd78fef
SHA1:
d076213a46a99b417b101af64821019e91a1457c
Base64:
4Zir