C:
char c = '\u020A';
printf("%c\n", c); // Output: Ȋ
JavaScript:
const char = '\u020A';
console.log(char); // Output: Ȋ
Java:
char c = '\u020A';
System.out.println(c); // Output: Ȋ
JSON:
{"text": "\u020A"} // Value: Ȋ
Python:
char = '\u020A'
print(char) # Output: Ȋ
Perl:
my $char = "\x{020A}";
print $char; # Output: Ȋ
PHP:
$char = "\x{020A}";
echo $char; // Output: Ȋ
Ruby:
char = "\u{020A}"
puts char # Output: Ȋ
Rust:
let c = '\u{20A}';
println!("{}", c); // Output: Ȋ
Go:
char := '\u020A'
fmt.Printf("%c\n", char) // Output: Ȋ
CSS:
/* CSS content property */
.element::before {
content: "\00020A"; /* 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%8A
MD5:
a8e46835755bb495b3c2e6d376deee70
SHA1:
61b95585eba525db6808e2238775acdc7eed4cf1
Base64:
yIo=