Unicode Finder

"ఆ" U+0C06(TELUGU LETTER AA)

U+0C06
שם בלוק
Telugu
שם
TELUGU LETTER AA

Programming

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

Web

CSS
\000C06
HtmlDecimal
ఆ
HtmlHexadecimal
ఆ
Url
%E0%B0%86

Code

MD5
fd8058371554382be008f3d8384e308e
Sha1
7f867a0629a2a77ff8289b0b2b1572728512e55b
Base64
4LCG

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

Programming Languages

C:

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

JavaScript:

const char = '\u0C06';
console.log(char);  // Output: ఆ

Java:

char c = '\u0C06';
System.out.println(c);  // Output: ఆ

JSON:

{"text": "\u0C06"}  // Value: ఆ

Python:

char = '\u0C06'
print(char)  # Output: ఆ

Perl:

my $char = "\x{0C06}";
print $char;  # Output: ఆ

PHP:

$char = "\x{0C06}";
echo $char;  // Output: ఆ

Ruby:

char = "\u{0C06}"
puts char  # Output: ఆ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#3078;</p>  <!-- Display: ఆ -->

HTML Hexadecimal:

<p>HTML hex: &#x0C06;</p>  <!-- Display: ఆ -->

URL Encoding:

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

Encodings

MD5:

fd8058371554382be008f3d8384e308e

SHA1:

7f867a0629a2a77ff8289b0b2b1572728512e55b

Base64:

4LCG