Unicode Finder

"௬" U+0BEC(TAMIL DIGIT SIX)

U+0BEC
ব্লক নাম
Tamil
নাম
TAMIL DIGIT SIX

Programming

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

Web

CSS
\000BEC
HtmlDecimal
௬
HtmlHexadecimal
௬
Url
%E0%AF%AC

Code

MD5
7bfad7a6d2b1f8ae022cf124caf14045
Sha1
881c9161c73090f4ce6b927543ba56383a400be9
Base64
4K+s

ব্যবহারের উদাহরণ

Programming Languages

C:

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

JavaScript:

const char = '\u0BEC';
console.log(char);  // Output: ௬

Java:

char c = '\u0BEC';
System.out.println(c);  // Output: ௬

JSON:

{"text": "\u0BEC"}  // Value: ௬

Python:

char = '\u0BEC'
print(char)  # Output: ௬

Perl:

my $char = "\x{0BEC}";
print $char;  # Output: ௬

PHP:

$char = "\x{0BEC}";
echo $char;  // Output: ௬

Ruby:

char = "\u{0BEC}"
puts char  # Output: ௬

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#3052;</p>  <!-- Display: ௬ -->

HTML Hexadecimal:

<p>HTML hex: &#x0BEC;</p>  <!-- Display: ௬ -->

URL Encoding:

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

Encodings

MD5:

7bfad7a6d2b1f8ae022cf124caf14045

SHA1:

881c9161c73090f4ce6b927543ba56383a400be9

Base64:

4K+s