C:
char c = '\u0288';
printf("%c\n", c); // Output: ʈ
JavaScript:
const char = '\u0288';
console.log(char); // Output: ʈ
Java:
char c = '\u0288';
System.out.println(c); // Output: ʈ
JSON:
{"text": "\u0288"} // Value: ʈ
Python:
char = '\u0288'
print(char) # Output: ʈ
Perl:
my $char = "\x{0288}";
print $char; # Output: ʈ
PHP:
$char = "\x{0288}";
echo $char; // Output: ʈ
Ruby:
char = "\u{0288}"
puts char # Output: ʈ
Rust:
let c = '\u{288}';
println!("{}", c); // Output: ʈ
Go:
char := '\u0288'
fmt.Printf("%c\n", char) // Output: ʈ
CSS:
/* CSS content property */
.element::before {
content: "\000288"; /* 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%88
MD5:
7025a519261cd0f3138c39dfa56fcab5
SHA1:
f74da9badf2d3bba971ed60073dbd2da6ce8b917
Base64:
yog=