Unicode Finder

"ం" U+0C02(TELUGU SIGN ANUSVARA)

U+0C02
Blocknamn
Telugu
Namn
TELUGU SIGN ANUSVARA

Programming

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

Web

CSS
\000C02
HtmlDecimal
ం
HtmlHexadecimal
ం
Url
%E0%B0%82

Code

MD5
a16e50de5073c3cc01314dc0cd78f9c6
Sha1
e34454f8b46732a33c8df80c7a229c3881e376c5
Base64
4LCC

Användningsexempel

Programming Languages

C:

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

JavaScript:

const char = '\u0C02';
console.log(char);  // Output: ం

Java:

char c = '\u0C02';
System.out.println(c);  // Output: ం

JSON:

{"text": "\u0C02"}  // Value: ం

Python:

char = '\u0C02'
print(char)  # Output: ం

Perl:

my $char = "\x{0C02}";
print $char;  # Output: ం

PHP:

$char = "\x{0C02}";
echo $char;  // Output: ం

Ruby:

char = "\u{0C02}"
puts char  # Output: ం

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#3074;</p>  <!-- Display: ం -->

HTML Hexadecimal:

<p>HTML hex: &#x0C02;</p>  <!-- Display: ం -->

URL Encoding:

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

Encodings

MD5:

a16e50de5073c3cc01314dc0cd78f9c6

SHA1:

e34454f8b46732a33c8df80c7a229c3881e376c5

Base64:

4LCC