Unicode Finder

"௳" U+0BF3(TAMIL DAY SIGN)

U+0BF3
نام بلوک
Tamil
نام
TAMIL DAY SIGN

Programming

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

Web

CSS
\000BF3
HtmlDecimal
௳
HtmlHexadecimal
௳
Url
%E0%AF%B3

Code

MD5
43634b4909c613bf7da94c72e683ca0a
Sha1
707f5770b042552188870683413bd30e2ef62d30
Base64
4K+z

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

Programming Languages

C:

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

JavaScript:

const char = '\u0BF3';
console.log(char);  // Output: ௳

Java:

char c = '\u0BF3';
System.out.println(c);  // Output: ௳

JSON:

{"text": "\u0BF3"}  // Value: ௳

Python:

char = '\u0BF3'
print(char)  # Output: ௳

Perl:

my $char = "\x{0BF3}";
print $char;  # Output: ௳

PHP:

$char = "\x{0BF3}";
echo $char;  // Output: ௳

Ruby:

char = "\u{0BF3}"
puts char  # Output: ௳

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#3059;</p>  <!-- Display: ௳ -->

HTML Hexadecimal:

<p>HTML hex: &#x0BF3;</p>  <!-- Display: ௳ -->

URL Encoding:

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

Encodings

MD5:

43634b4909c613bf7da94c72e683ca0a

SHA1:

707f5770b042552188870683413bd30e2ef62d30

Base64:

4K+z