Unicode Finder

"ಫ" U+0CAB(KANNADA LETTER PHA)

U+0CAB
ब्लॉक का नाम
Kannada
नाम
KANNADA LETTER PHA

Programming

C
\u0CAB
JavaScript
\u0CAB
Java
\u0CAB
Json
\u0CAB
Python
\u0CAB
Perl
\x{0CAB}
PHP
\x{0CAB}
Ruby
\u{0CAB}
Rust
\u{CAB}
Go
\u0CAB

Web

CSS
\000CAB
HtmlDecimal
ಫ
HtmlHexadecimal
ಫ
Url
%E0%B2%AB

Code

MD5
c19fee60681579641270174fc9ccd373
Sha1
5583027d9c1ca3a0471ef3189dc391ddff588c52
Base64
4LKr

उपयोग के उदाहरण

Programming Languages

C:

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

JavaScript:

const char = '\u0CAB';
console.log(char);  // Output: ಫ

Java:

char c = '\u0CAB';
System.out.println(c);  // Output: ಫ

JSON:

{"text": "\u0CAB"}  // Value: ಫ

Python:

char = '\u0CAB'
print(char)  # Output: ಫ

Perl:

my $char = "\x{0CAB}";
print $char;  # Output: ಫ

PHP:

$char = "\x{0CAB}";
echo $char;  // Output: ಫ

Ruby:

char = "\u{0CAB}"
puts char  # Output: ಫ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\000CAB";  /* Display: ಫ */
}

HTML Decimal:

<p>HTML decimal: &#3243;</p>  <!-- Display: ಫ -->

HTML Hexadecimal:

<p>HTML hex: &#x0CAB;</p>  <!-- Display: ಫ -->

URL Encoding:

// ಫ URL encoding
https://unicodefinder.com/search.php?query=%E0%B2%AB

Encodings

MD5:

c19fee60681579641270174fc9ccd373

SHA1:

5583027d9c1ca3a0471ef3189dc391ddff588c52

Base64:

4LKr