C:
char c = '\u0284';
printf("%c\n", c); // Output: ʄ
JavaScript:
const char = '\u0284';
console.log(char); // Output: ʄ
Java:
char c = '\u0284';
System.out.println(c); // Output: ʄ
JSON:
{"text": "\u0284"} // Value: ʄ
Python:
char = '\u0284'
print(char) # Output: ʄ
Perl:
my $char = "\x{0284}";
print $char; # Output: ʄ
PHP:
$char = "\x{0284}";
echo $char; // Output: ʄ
Ruby:
char = "\u{0284}"
puts char # Output: ʄ
Rust:
let c = '\u{284}';
println!("{}", c); // Output: ʄ
Go:
char := '\u0284'
fmt.Printf("%c\n", char) // Output: ʄ
CSS:
/* CSS content property */
.element::before {
content: "\000284"; /* 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%84
MD5:
071eb61a4b5efabac39d17ebc05d8efc
SHA1:
09503199746f8dc1542c1242d73af04b828977cb
Base64:
yoQ=