Unicode Finder

"ੱ" U+0A71(GURMUKHI ADDAK)

U+0A71
שם בלוק
Gurmukhi
שם
GURMUKHI ADDAK

Programming

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

Web

CSS
\000A71
HtmlDecimal
ੱ
HtmlHexadecimal
ੱ
Url
%E0%A9%B1

Code

MD5
1a28b359cc03cb62d891a02823e5b736
Sha1
ecefe00d4d2b2752cde94317246c03c0f76cb058
Base64
4Kmx

דוגמאות שימוש

Programming Languages

C:

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

JavaScript:

const char = '\u0A71';
console.log(char);  // Output: ੱ

Java:

char c = '\u0A71';
System.out.println(c);  // Output: ੱ

JSON:

{"text": "\u0A71"}  // Value: ੱ

Python:

char = '\u0A71'
print(char)  # Output: ੱ

Perl:

my $char = "\x{0A71}";
print $char;  # Output: ੱ

PHP:

$char = "\x{0A71}";
echo $char;  // Output: ੱ

Ruby:

char = "\u{0A71}"
puts char  # Output: ੱ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#2673;</p>  <!-- Display: ੱ -->

HTML Hexadecimal:

<p>HTML hex: &#x0A71;</p>  <!-- Display: ੱ -->

URL Encoding:

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

Encodings

MD5:

1a28b359cc03cb62d891a02823e5b736

SHA1:

ecefe00d4d2b2752cde94317246c03c0f76cb058

Base64:

4Kmx