C:
char c = '\u0195';
printf("%c\n", c); // Output: ƕ
JavaScript:
const char = '\u0195';
console.log(char); // Output: ƕ
Java:
char c = '\u0195';
System.out.println(c); // Output: ƕ
JSON:
{"text": "\u0195"} // Value: ƕ
Python:
char = '\u0195'
print(char) # Output: ƕ
Perl:
my $char = "\x{0195}";
print $char; # Output: ƕ
PHP:
$char = "\x{0195}";
echo $char; // Output: ƕ
Ruby:
char = "\u{0195}"
puts char # Output: ƕ
Rust:
let c = '\u{195}';
println!("{}", c); // Output: ƕ
Go:
char := '\u0195'
fmt.Printf("%c\n", char) // Output: ƕ
CSS:
/* CSS content property */
.element::before {
content: "\000195"; /* 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%95
MD5:
fffb51bff6c3b8052cb8917549e7dfbd
SHA1:
7e70aadb54aef74ab97bf2931befa2729c3ff390
Base64:
xpU=