Unicode Finder

"੫" U+0A6B(GURMUKHI DIGIT FIVE)

U+0A6B
ব্লক নাম
Gurmukhi
নাম
GURMUKHI DIGIT FIVE

Programming

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

Web

CSS
\000A6B
HtmlDecimal
੫
HtmlHexadecimal
੫
Url
%E0%A9%AB

Code

MD5
7d336a6eb793aba740677ff411ea37af
Sha1
ac826cab891168e98f57d8d4f9bd3f4755372f42
Base64
4Kmr

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

Programming Languages

C:

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

JavaScript:

const char = '\u0A6B';
console.log(char);  // Output: ੫

Java:

char c = '\u0A6B';
System.out.println(c);  // Output: ੫

JSON:

{"text": "\u0A6B"}  // Value: ੫

Python:

char = '\u0A6B'
print(char)  # Output: ੫

Perl:

my $char = "\x{0A6B}";
print $char;  # Output: ੫

PHP:

$char = "\x{0A6B}";
echo $char;  // Output: ੫

Ruby:

char = "\u{0A6B}"
puts char  # Output: ੫

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#2667;</p>  <!-- Display: ੫ -->

HTML Hexadecimal:

<p>HTML hex: &#x0A6B;</p>  <!-- Display: ੫ -->

URL Encoding:

// ੫ URL encoding
https://unicodefinder.com/search.php?query=%E0%A9%AB

Encodings

MD5:

7d336a6eb793aba740677ff411ea37af

SHA1:

ac826cab891168e98f57d8d4f9bd3f4755372f42

Base64:

4Kmr