C:
char c = '\u028C';
printf("%c\n", c); // Output: ʌ
JavaScript:
const char = '\u028C';
console.log(char); // Output: ʌ
Java:
char c = '\u028C';
System.out.println(c); // Output: ʌ
JSON:
{"text": "\u028C"} // Value: ʌ
Python:
char = '\u028C'
print(char) # Output: ʌ
Perl:
my $char = "\x{028C}";
print $char; # Output: ʌ
PHP:
$char = "\x{028C}";
echo $char; // Output: ʌ
Ruby:
char = "\u{028C}"
puts char # Output: ʌ
Rust:
let c = '\u{28C}';
println!("{}", c); // Output: ʌ
Go:
char := '\u028C'
fmt.Printf("%c\n", char) // Output: ʌ
CSS:
/* CSS content property */
.element::before {
content: "\00028C"; /* 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%8C
MD5:
7bbfa6cbf83824eb280f17de16f5441d
SHA1:
2a9516f7abb5a917cebd59259bebb21d23a89b6e
Base64:
yow=