C:
char c = '\u0296';
printf("%c\n", c); // Output: ʖ
JavaScript:
const char = '\u0296';
console.log(char); // Output: ʖ
Java:
char c = '\u0296';
System.out.println(c); // Output: ʖ
JSON:
{"text": "\u0296"} // Value: ʖ
Python:
char = '\u0296'
print(char) # Output: ʖ
Perl:
my $char = "\x{0296}";
print $char; # Output: ʖ
PHP:
$char = "\x{0296}";
echo $char; // Output: ʖ
Ruby:
char = "\u{0296}"
puts char # Output: ʖ
Rust:
let c = '\u{296}';
println!("{}", c); // Output: ʖ
Go:
char := '\u0296'
fmt.Printf("%c\n", char) // Output: ʖ
CSS:
/* CSS content property */
.element::before {
content: "\000296"; /* 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%96
MD5:
a7f69fd62010e4f9824b4ac4f2ff595e
SHA1:
4df3eddb4817e269496c50f999734d73ec2a2d06
Base64:
ypY=