C:
char c = '\u01A8';
printf("%c\n", c); // Output: ƨ
JavaScript:
const char = '\u01A8';
console.log(char); // Output: ƨ
Java:
char c = '\u01A8';
System.out.println(c); // Output: ƨ
JSON:
{"text": "\u01A8"} // Value: ƨ
Python:
char = '\u01A8'
print(char) # Output: ƨ
Perl:
my $char = "\x{01A8}";
print $char; # Output: ƨ
PHP:
$char = "\x{01A8}";
echo $char; // Output: ƨ
Ruby:
char = "\u{01A8}"
puts char # Output: ƨ
Rust:
let c = '\u{1A8}';
println!("{}", c); // Output: ƨ
Go:
char := '\u01A8'
fmt.Printf("%c\n", char) // Output: ƨ
CSS:
/* CSS content property */
.element::before {
content: "\0001A8"; /* 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=%C6%A8
MD5:
116c8ee2ee91247c13ce9695079fac5a
SHA1:
83abf7ddc4394233286c9210087dabf03b19a153
Base64:
xqg=