Unicode Finder

"ੋ" U+0A4B(GURMUKHI VOWEL SIGN OO)

U+0A4B
ব্লক নাম
Gurmukhi
নাম
GURMUKHI VOWEL SIGN OO

Programming

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

Web

CSS
\000A4B
HtmlDecimal
ੋ
HtmlHexadecimal
ੋ
Url
%E0%A9%8B

Code

MD5
1438dfa9b3081d97fb1c6c75a6572cda
Sha1
55286a19ae1a861d856ffe5ee39386c657128319
Base64
4KmL

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

Programming Languages

C:

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

JavaScript:

const char = '\u0A4B';
console.log(char);  // Output: ੋ

Java:

char c = '\u0A4B';
System.out.println(c);  // Output: ੋ

JSON:

{"text": "\u0A4B"}  // Value: ੋ

Python:

char = '\u0A4B'
print(char)  # Output: ੋ

Perl:

my $char = "\x{0A4B}";
print $char;  # Output: ੋ

PHP:

$char = "\x{0A4B}";
echo $char;  // Output: ੋ

Ruby:

char = "\u{0A4B}"
puts char  # Output: ੋ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#2635;</p>  <!-- Display: ੋ -->

HTML Hexadecimal:

<p>HTML hex: &#x0A4B;</p>  <!-- Display: ੋ -->

URL Encoding:

// ੋ URL encoding
https://unicodefinder.com/search.php?query=%E0%A9%8B

Encodings

MD5:

1438dfa9b3081d97fb1c6c75a6572cda

SHA1:

55286a19ae1a861d856ffe5ee39386c657128319

Base64:

4KmL