C:
char c = '\u0291';
printf("%c\n", c); // Output: ʑ
JavaScript:
const char = '\u0291';
console.log(char); // Output: ʑ
Java:
char c = '\u0291';
System.out.println(c); // Output: ʑ
JSON:
{"text": "\u0291"} // Value: ʑ
Python:
char = '\u0291'
print(char) # Output: ʑ
Perl:
my $char = "\x{0291}";
print $char; # Output: ʑ
PHP:
$char = "\x{0291}";
echo $char; // Output: ʑ
Ruby:
char = "\u{0291}"
puts char # Output: ʑ
Rust:
let c = '\u{291}';
println!("{}", c); // Output: ʑ
Go:
char := '\u0291'
fmt.Printf("%c\n", char) // Output: ʑ
CSS:
/* CSS content property */
.element::before {
content: "\000291"; /* 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=%CA%91
MD5:
895dee7b8401ae4dd03908cd7198281a
SHA1:
8655b10da4a530bf6a348885fb8aa7ad80fe897b
Base64:
ypE=