Unicode Finder

"ĸ" U+0138(LATIN SMALL LETTER KRA)

ĸ
U+0138
Tên Khối
Latin Extended-A
Tên
LATIN SMALL LETTER KRA

Programming

C
\u0138
JavaScript
\u0138
Java
\u0138
Json
\u0138
Python
\u0138
Perl
\x{0138}
PHP
\x{0138}
Ruby
\u{0138}
Rust
\u{138}
Go
\u0138

Web

CSS
\000138
HtmlDecimal
ĸ
HtmlHexadecimal
ĸ
Url
%C4%B8

Code

MD5
2a12ba8bca2b53b9ba798266cd565d4d
Sha1
5a132a5fdaf5b9f25165cbaa1a871c62883d755c
Base64
xLg=

Ví dụ Sử dụng

Programming Languages

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: ĸ

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\000138";  /* Display: ĸ */
}

HTML Decimal:

<p>HTML decimal: &#312;</p>  <!-- Display: ĸ -->

HTML Hexadecimal:

<p>HTML hex: &#x0138;</p>  <!-- Display: ĸ -->

URL Encoding:

// ĸ URL encoding
https://unicodefinder.com/search.php?query=%C4%B8

Encodings

MD5:

2a12ba8bca2b53b9ba798266cd565d4d

SHA1:

5a132a5fdaf5b9f25165cbaa1a871c62883d755c

Base64:

xLg=