Unicode Finder

"௰" U+0BF0(TAMIL NUMBER TEN)

U+0BF0
ব্লক নাম
Tamil
নাম
TAMIL NUMBER TEN

Programming

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

Web

CSS
\000BF0
HtmlDecimal
௰
HtmlHexadecimal
௰
Url
%E0%AF%B0

Code

MD5
0228b92ddbc76891d9af23c6901ceedc
Sha1
53b0b8bc2ec233ecf689afad01d0bacbfb3fd5d4
Base64
4K+w

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

Programming Languages

C:

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

JavaScript:

const char = '\u0BF0';
console.log(char);  // Output: ௰

Java:

char c = '\u0BF0';
System.out.println(c);  // Output: ௰

JSON:

{"text": "\u0BF0"}  // Value: ௰

Python:

char = '\u0BF0'
print(char)  # Output: ௰

Perl:

my $char = "\x{0BF0}";
print $char;  # Output: ௰

PHP:

$char = "\x{0BF0}";
echo $char;  // Output: ௰

Ruby:

char = "\u{0BF0}"
puts char  # Output: ௰

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#3056;</p>  <!-- Display: ௰ -->

HTML Hexadecimal:

<p>HTML hex: &#x0BF0;</p>  <!-- Display: ௰ -->

URL Encoding:

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

Encodings

MD5:

0228b92ddbc76891d9af23c6901ceedc

SHA1:

53b0b8bc2ec233ecf689afad01d0bacbfb3fd5d4

Base64:

4K+w