Unicode Finder

"౯" U+0C6F(TELUGU DIGIT NINE)

U+0C6F
نام بلوک
Telugu
نام
TELUGU DIGIT NINE

Programming

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

Web

CSS
\000C6F
HtmlDecimal
౯
HtmlHexadecimal
౯
Url
%E0%B1%AF

Code

MD5
8f50c92efbb8fe68010f252d97f2fccf
Sha1
45ee15a38680b3ac99c638fda7a51269b8b76ba9
Base64
4LGv

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

Programming Languages

C:

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

JavaScript:

const char = '\u0C6F';
console.log(char);  // Output: ౯

Java:

char c = '\u0C6F';
System.out.println(c);  // Output: ౯

JSON:

{"text": "\u0C6F"}  // Value: ౯

Python:

char = '\u0C6F'
print(char)  # Output: ౯

Perl:

my $char = "\x{0C6F}";
print $char;  # Output: ౯

PHP:

$char = "\x{0C6F}";
echo $char;  // Output: ౯

Ruby:

char = "\u{0C6F}"
puts char  # Output: ౯

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#3183;</p>  <!-- Display: ౯ -->

HTML Hexadecimal:

<p>HTML hex: &#x0C6F;</p>  <!-- Display: ౯ -->

URL Encoding:

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

Encodings

MD5:

8f50c92efbb8fe68010f252d97f2fccf

SHA1:

45ee15a38680b3ac99c638fda7a51269b8b76ba9

Base64:

4LGv