Unicode Finder

"Ḳ" U+1E32(LATIN CAPITAL LETTER K WITH DOT BELOW)

U+1E32
Block Name
Latin Extended Additional
Name
LATIN CAPITAL LETTER K WITH DOT BELOW

Programming

C
\u1E32
JavaScript
\u1E32
Java
\u1E32
Json
\u1E32
Python
\u1E32
Perl
\x{1E32}
PHP
\x{1E32}
Ruby
\u{1E32}
Rust
\u{1E32}
Go
\u1E32

Web

CSS
\001E32
HtmlDecimal
Ḳ
HtmlHexadecimal
Ḳ
Url
%E1%B8%B2

Code

MD5
996718d82480e3359d467fa005e9aa17
Sha1
3576fdfce5a7321fb0aadd7a2a61fd007dff3698
Base64
4biy

Usage Examples

Programming Languages

C:

char c = '\u1E32';
printf("%c\n", c);  // Output: Ḳ

JavaScript:

const char = '\u1E32';
console.log(char);  // Output: Ḳ

Java:

char c = '\u1E32';
System.out.println(c);  // Output: Ḳ

JSON:

{"text": "\u1E32"}  // Value: Ḳ

Python:

char = '\u1E32'
print(char)  # Output: Ḳ

Perl:

my $char = "\x{1E32}";
print $char;  # Output: Ḳ

PHP:

$char = "\x{1E32}";
echo $char;  // Output: Ḳ

Ruby:

char = "\u{1E32}"
puts char  # Output: Ḳ

Rust:

let c = '\u{1E32}';
println!("{}", c);  // Output: Ḳ

Go:

char := '\u1E32'
fmt.Printf("%c\n", char)  // Output: Ḳ

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\001E32";  /* Display: Ḳ */
}

HTML Decimal:

<p>HTML decimal: &#7730;</p>  <!-- Display: Ḳ -->

HTML Hexadecimal:

<p>HTML hex: &#x1E32;</p>  <!-- Display: Ḳ -->

URL Encoding:

// Ḳ URL encoding
https://unicodefinder.com/search.php?query=%E1%B8%B2

Encodings

MD5:

996718d82480e3359d467fa005e9aa17

SHA1:

3576fdfce5a7321fb0aadd7a2a61fd007dff3698

Base64:

4biy