Unicode Finder

"ಙ" U+0C99(KANNADA LETTER NGA)

U+0C99
ब्लॉक का नाम
Kannada
नाम
KANNADA LETTER NGA

Programming

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

Web

CSS
\000C99
HtmlDecimal
ಙ
HtmlHexadecimal
ಙ
Url
%E0%B2%99

Code

MD5
a9ce74df62e574d709354a91f16d2f77
Sha1
d80fee5a915d29538878e436d8236ffbac128a93
Base64
4LKZ

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

Programming Languages

C:

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

JavaScript:

const char = '\u0C99';
console.log(char);  // Output: ಙ

Java:

char c = '\u0C99';
System.out.println(c);  // Output: ಙ

JSON:

{"text": "\u0C99"}  // Value: ಙ

Python:

char = '\u0C99'
print(char)  # Output: ಙ

Perl:

my $char = "\x{0C99}";
print $char;  # Output: ಙ

PHP:

$char = "\x{0C99}";
echo $char;  // Output: ಙ

Ruby:

char = "\u{0C99}"
puts char  # Output: ಙ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#3225;</p>  <!-- Display: ಙ -->

HTML Hexadecimal:

<p>HTML hex: &#x0C99;</p>  <!-- Display: ಙ -->

URL Encoding:

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

Encodings

MD5:

a9ce74df62e574d709354a91f16d2f77

SHA1:

d80fee5a915d29538878e436d8236ffbac128a93

Base64:

4LKZ