Unicode Finder

"గ" U+0C17(TELUGU LETTER GA)

U+0C17
שם בלוק
Telugu
שם
TELUGU LETTER GA

Programming

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

Web

CSS
\000C17
HtmlDecimal
గ
HtmlHexadecimal
గ
Url
%E0%B0%97

Code

MD5
910f37cda25c0df11897fad3e53852af
Sha1
1e901875193699f025ab7e1eb898ccab53c70a6f
Base64
4LCX

דוגמאות שימוש

Programming Languages

C:

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

JavaScript:

const char = '\u0C17';
console.log(char);  // Output: గ

Java:

char c = '\u0C17';
System.out.println(c);  // Output: గ

JSON:

{"text": "\u0C17"}  // Value: గ

Python:

char = '\u0C17'
print(char)  # Output: గ

Perl:

my $char = "\x{0C17}";
print $char;  # Output: గ

PHP:

$char = "\x{0C17}";
echo $char;  // Output: గ

Ruby:

char = "\u{0C17}"
puts char  # Output: గ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#3095;</p>  <!-- Display: గ -->

HTML Hexadecimal:

<p>HTML hex: &#x0C17;</p>  <!-- Display: గ -->

URL Encoding:

// గ URL encoding
https://unicodefinder.com/search.php?query=%E0%B0%97

Encodings

MD5:

910f37cda25c0df11897fad3e53852af

SHA1:

1e901875193699f025ab7e1eb898ccab53c70a6f

Base64:

4LCX