C:
char c = '\u0199';
printf("%c\n", c); // Output: ƙ
JavaScript:
const char = '\u0199';
console.log(char); // Output: ƙ
Java:
char c = '\u0199';
System.out.println(c); // Output: ƙ
JSON:
{"text": "\u0199"} // Value: ƙ
Python:
char = '\u0199'
print(char) # Output: ƙ
Perl:
my $char = "\x{0199}";
print $char; # Output: ƙ
PHP:
$char = "\x{0199}";
echo $char; // Output: ƙ
Ruby:
char = "\u{0199}"
puts char # Output: ƙ
Rust:
let c = '\u{199}';
println!("{}", c); // Output: ƙ
Go:
char := '\u0199'
fmt.Printf("%c\n", char) // Output: ƙ
CSS:
/* CSS content property */
.element::before {
content: "\000199"; /* 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%99
MD5:
e6228d6eca2a78b8c7c9327e100f4b67
SHA1:
0bad82326ae3c0e4f0ab3aca6658566891ee9978
Base64:
xpk=