C:
char c = '\u0208';
printf("%c\n", c); // Output: Ȉ
JavaScript:
const char = '\u0208';
console.log(char); // Output: Ȉ
Java:
char c = '\u0208';
System.out.println(c); // Output: Ȉ
JSON:
{"text": "\u0208"} // Value: Ȉ
Python:
char = '\u0208'
print(char) # Output: Ȉ
Perl:
my $char = "\x{0208}";
print $char; # Output: Ȉ
PHP:
$char = "\x{0208}";
echo $char; // Output: Ȉ
Ruby:
char = "\u{0208}"
puts char # Output: Ȉ
Rust:
let c = '\u{208}';
println!("{}", c); // Output: Ȉ
Go:
char := '\u0208'
fmt.Printf("%c\n", char) // Output: Ȉ
CSS:
/* CSS content property */
.element::before {
content: "\000208"; /* 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%88
MD5:
fd78966fb02420f0c4194b1a892183b3
SHA1:
0593d94d7a6b7f10e1c70603d974c5ae389ff843
Base64:
yIg=