C:
char c = '\u0244';
printf("%c\n", c); // Output: Ʉ
JavaScript:
const char = '\u0244';
console.log(char); // Output: Ʉ
Java:
char c = '\u0244';
System.out.println(c); // Output: Ʉ
JSON:
{"text": "\u0244"} // Value: Ʉ
Python:
char = '\u0244'
print(char) # Output: Ʉ
Perl:
my $char = "\x{0244}";
print $char; # Output: Ʉ
PHP:
$char = "\x{0244}";
echo $char; // Output: Ʉ
Ruby:
char = "\u{0244}"
puts char # Output: Ʉ
Rust:
let c = '\u{244}';
println!("{}", c); // Output: Ʉ
Go:
char := '\u0244'
fmt.Printf("%c\n", char) // Output: Ʉ
CSS:
/* CSS content property */
.element::before {
content: "\000244"; /* 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%84
MD5:
c0e932227b8cc7d804d40c439beb336f
SHA1:
ef071872b0fa55d697a8395213e15bdd3e6c544d
Base64:
yYQ=