C:
char c = '\u0295';
printf("%c\n", c); // Output: ʕ
JavaScript:
const char = '\u0295';
console.log(char); // Output: ʕ
Java:
char c = '\u0295';
System.out.println(c); // Output: ʕ
JSON:
{"text": "\u0295"} // Value: ʕ
Python:
char = '\u0295'
print(char) # Output: ʕ
Perl:
my $char = "\x{0295}";
print $char; # Output: ʕ
PHP:
$char = "\x{0295}";
echo $char; // Output: ʕ
Ruby:
char = "\u{0295}"
puts char # Output: ʕ
Rust:
let c = '\u{295}';
println!("{}", c); // Output: ʕ
Go:
char := '\u0295'
fmt.Printf("%c\n", char) // Output: ʕ
CSS:
/* CSS content property */
.element::before {
content: "\000295"; /* 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%95
MD5:
6da58eedc2712fad1f9bb8e45e7950cc
SHA1:
03a4b26c05c47fb2806234cb3f3b91100e2aa667
Base64:
ypU=