C:
char c = '\u0138';
printf("%c\n", c); // Output: ĸ
JavaScript:
const char = '\u0138';
console.log(char); // Output: ĸ
Java:
char c = '\u0138';
System.out.println(c); // Output: ĸ
JSON:
{"text": "\u0138"} // Value: ĸ
Python:
char = '\u0138'
print(char) # Output: ĸ
Perl:
my $char = "\x{0138}";
print $char; # Output: ĸ
PHP:
$char = "\x{0138}";
echo $char; // Output: ĸ
Ruby:
char = "\u{0138}"
puts char # Output: ĸ
Rust:
let c = '\u{138}';
println!("{}", c); // Output: ĸ
Go:
char := '\u0138'
fmt.Printf("%c\n", char) // Output: ĸ
CSS:
/* CSS content property */
.element::before {
content: "\000138"; /* 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=%C4%B8
MD5:
2a12ba8bca2b53b9ba798266cd565d4d
SHA1:
5a132a5fdaf5b9f25165cbaa1a871c62883d755c
Base64:
xLg=