Unicode Finder

"ఛ" U+0C1B(TELUGU LETTER CHA)

U+0C1B
نام بلوک
Telugu
نام
TELUGU LETTER CHA

Programming

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

Web

CSS
\000C1B
HtmlDecimal
ఛ
HtmlHexadecimal
ఛ
Url
%E0%B0%9B

Code

MD5
384266e436c182e5c8d5b5d80bdea3ac
Sha1
d1d3493714b485b90c62af312bc4bb36a55cd0ef
Base64
4LCb

مثال‌های استفاده

Programming Languages

C:

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

JavaScript:

const char = '\u0C1B';
console.log(char);  // Output: ఛ

Java:

char c = '\u0C1B';
System.out.println(c);  // Output: ఛ

JSON:

{"text": "\u0C1B"}  // Value: ఛ

Python:

char = '\u0C1B'
print(char)  # Output: ఛ

Perl:

my $char = "\x{0C1B}";
print $char;  # Output: ఛ

PHP:

$char = "\x{0C1B}";
echo $char;  // Output: ఛ

Ruby:

char = "\u{0C1B}"
puts char  # Output: ఛ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#3099;</p>  <!-- Display: ఛ -->

HTML Hexadecimal:

<p>HTML hex: &#x0C1B;</p>  <!-- Display: ఛ -->

URL Encoding:

// ఛ URL encoding
https://unicodefinder.com/search.php?query=%E0%B0%9B

Encodings

MD5:

384266e436c182e5c8d5b5d80bdea3ac

SHA1:

d1d3493714b485b90c62af312bc4bb36a55cd0ef

Base64:

4LCb