C:
char c = '\u0204';
printf("%c\n", c); // Output: Ȅ
JavaScript:
const char = '\u0204';
console.log(char); // Output: Ȅ
Java:
char c = '\u0204';
System.out.println(c); // Output: Ȅ
JSON:
{"text": "\u0204"} // Value: Ȅ
Python:
char = '\u0204'
print(char) # Output: Ȅ
Perl:
my $char = "\x{0204}";
print $char; # Output: Ȅ
PHP:
$char = "\x{0204}";
echo $char; // Output: Ȅ
Ruby:
char = "\u{0204}"
puts char # Output: Ȅ
Rust:
let c = '\u{204}';
println!("{}", c); // Output: Ȅ
Go:
char := '\u0204'
fmt.Printf("%c\n", char) // Output: Ȅ
CSS:
/* CSS content property */
.element::before {
content: "\000204"; /* 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=%C8%84
MD5:
17925c455f1602f9eb6b1e5cf98cd7ba
SHA1:
f8020ae4183b04334c4e0d70ba52b0511e08a1be
Base64:
yIQ=