Unicode Finder

"ކ" U+0786(THAANA LETTER KAAFU)

ކ
U+0786
ชื่อบล็อก
Thaana
ชื่อ
THAANA LETTER KAAFU

Programming

C
\u0786
JavaScript
\u0786
Java
\u0786
Json
\u0786
Python
\u0786
Perl
\x{0786}
PHP
\x{0786}
Ruby
\u{0786}
Rust
\u{786}
Go
\u0786

Web

CSS
\000786
HtmlDecimal
ކ
HtmlHexadecimal
ކ
Url
%DE%86

Code

MD5
1fba07032600c3082db1598054a11328
Sha1
34fc685de99307f0cc028636b747f5ed52a9e678
Base64
3oY=

ตัวอย่างการใช้งาน

Programming Languages

C:

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

JavaScript:

const char = '\u0786';
console.log(char);  // Output: ކ

Java:

char c = '\u0786';
System.out.println(c);  // Output: ކ

JSON:

{"text": "\u0786"}  // Value: ކ

Python:

char = '\u0786'
print(char)  # Output: ކ

Perl:

my $char = "\x{0786}";
print $char;  # Output: ކ

PHP:

$char = "\x{0786}";
echo $char;  // Output: ކ

Ruby:

char = "\u{0786}"
puts char  # Output: ކ

Rust:

let c = '\u{786}';
println!("{}", c);  // Output: ކ

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\000786";  /* Display: ކ */
}

HTML Decimal:

<p>HTML decimal: &#1926;</p>  <!-- Display: ކ -->

HTML Hexadecimal:

<p>HTML hex: &#x0786;</p>  <!-- Display: ކ -->

URL Encoding:

// ކ URL encoding
https://unicodefinder.com/search.php?query=%DE%86

Encodings

MD5:

1fba07032600c3082db1598054a11328

SHA1:

34fc685de99307f0cc028636b747f5ed52a9e678

Base64:

3oY=