Unicode Finder

"ఔ" U+0C14(TELUGU LETTER AU)

U+0C14
שם בלוק
Telugu
שם
TELUGU LETTER AU

Programming

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

Web

CSS
\000C14
HtmlDecimal
ఔ
HtmlHexadecimal
ఔ
Url
%E0%B0%94

Code

MD5
8a6abc2e11a136e577126e78f57afe41
Sha1
d43fc277b0a42544ea32e8885845b6c3518653c9
Base64
4LCU

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

Programming Languages

C:

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

JavaScript:

const char = '\u0C14';
console.log(char);  // Output: ఔ

Java:

char c = '\u0C14';
System.out.println(c);  // Output: ఔ

JSON:

{"text": "\u0C14"}  // Value: ఔ

Python:

char = '\u0C14'
print(char)  # Output: ఔ

Perl:

my $char = "\x{0C14}";
print $char;  # Output: ఔ

PHP:

$char = "\x{0C14}";
echo $char;  // Output: ఔ

Ruby:

char = "\u{0C14}"
puts char  # Output: ఔ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#3092;</p>  <!-- Display: ఔ -->

HTML Hexadecimal:

<p>HTML hex: &#x0C14;</p>  <!-- Display: ఔ -->

URL Encoding:

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

Encodings

MD5:

8a6abc2e11a136e577126e78f57afe41

SHA1:

d43fc277b0a42544ea32e8885845b6c3518653c9

Base64:

4LCU