C:
char c = '\u0245';
printf("%c\n", c); // Output: Ʌ
JavaScript:
const char = '\u0245';
console.log(char); // Output: Ʌ
Java:
char c = '\u0245';
System.out.println(c); // Output: Ʌ
JSON:
{"text": "\u0245"} // Value: Ʌ
Python:
char = '\u0245'
print(char) # Output: Ʌ
Perl:
my $char = "\x{0245}";
print $char; # Output: Ʌ
PHP:
$char = "\x{0245}";
echo $char; // Output: Ʌ
Ruby:
char = "\u{0245}"
puts char # Output: Ʌ
Rust:
let c = '\u{245}';
println!("{}", c); // Output: Ʌ
Go:
char := '\u0245'
fmt.Printf("%c\n", char) // Output: Ʌ
CSS:
/* CSS content property */
.element::before {
content: "\000245"; /* 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=%C9%85
MD5:
d49d68b0a3dd67622621cf344bf9326e
SHA1:
c89adef314c09e1952ef51ffc1e638099cc93b8a
Base64:
yYU=