C:
char c = '\u0209';
printf("%c\n", c); // Output: ȉ
JavaScript:
const char = '\u0209';
console.log(char); // Output: ȉ
Java:
char c = '\u0209';
System.out.println(c); // Output: ȉ
JSON:
{"text": "\u0209"} // Value: ȉ
Python:
char = '\u0209'
print(char) # Output: ȉ
Perl:
my $char = "\x{0209}";
print $char; # Output: ȉ
PHP:
$char = "\x{0209}";
echo $char; // Output: ȉ
Ruby:
char = "\u{0209}"
puts char # Output: ȉ
Rust:
let c = '\u{209}';
println!("{}", c); // Output: ȉ
Go:
char := '\u0209'
fmt.Printf("%c\n", char) // Output: ȉ
CSS:
/* CSS content property */
.element::before {
content: "\000209"; /* 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%89
MD5:
394f0a774221ea43c9f6824b5b60ceab
SHA1:
706ad2a663c0cef396250ca2c263833f93d77260
Base64:
yIk=