Unicode Finder

"ౙ" U+0C59(TELUGU LETTER DZA)

U+0C59
بلاک کا نام
Telugu
نام
TELUGU LETTER DZA

Programming

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

Web

CSS
\000C59
HtmlDecimal
ౙ
HtmlHexadecimal
ౙ
Url
%E0%B1%99

Code

MD5
2721684a0d32763372219a7db0c3d8d9
Sha1
4ce668adb3aa7d64ccd710ec9ad2ce4027d08b38
Base64
4LGZ

استعمال کی مثالیں

Programming Languages

C:

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

JavaScript:

const char = '\u0C59';
console.log(char);  // Output: ౙ

Java:

char c = '\u0C59';
System.out.println(c);  // Output: ౙ

JSON:

{"text": "\u0C59"}  // Value: ౙ

Python:

char = '\u0C59'
print(char)  # Output: ౙ

Perl:

my $char = "\x{0C59}";
print $char;  # Output: ౙ

PHP:

$char = "\x{0C59}";
echo $char;  // Output: ౙ

Ruby:

char = "\u{0C59}"
puts char  # Output: ౙ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#3161;</p>  <!-- Display: ౙ -->

HTML Hexadecimal:

<p>HTML hex: &#x0C59;</p>  <!-- Display: ౙ -->

URL Encoding:

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

Encodings

MD5:

2721684a0d32763372219a7db0c3d8d9

SHA1:

4ce668adb3aa7d64ccd710ec9ad2ce4027d08b38

Base64:

4LGZ