Unicode Finder

"߁" U+07C1(NKO DIGIT ONE)

߁
U+07C1
ब्लॉक का नाम
NKo
नाम
NKO DIGIT ONE

Programming

C
\u07C1
JavaScript
\u07C1
Java
\u07C1
Json
\u07C1
Python
\u07C1
Perl
\x{07C1}
PHP
\x{07C1}
Ruby
\u{07C1}
Rust
\u{7C1}
Go
\u07C1

Web

CSS
\0007C1
HtmlDecimal
߁
HtmlHexadecimal
߁
Url
%DF%81

Code

MD5
cb375b085449d21e6b05bc9a9eedfbac
Sha1
fdc1e2f1aa5886d4e8131b8efcebefebbeae1bfe
Base64
34E=

उपयोग के उदाहरण

Programming Languages

C:

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

JavaScript:

const char = '\u07C1';
console.log(char);  // Output: ߁

Java:

char c = '\u07C1';
System.out.println(c);  // Output: ߁

JSON:

{"text": "\u07C1"}  // Value: ߁

Python:

char = '\u07C1'
print(char)  # Output: ߁

Perl:

my $char = "\x{07C1}";
print $char;  # Output: ߁

PHP:

$char = "\x{07C1}";
echo $char;  // Output: ߁

Ruby:

char = "\u{07C1}"
puts char  # Output: ߁

Rust:

let c = '\u{7C1}';
println!("{}", c);  // Output: ߁

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0007C1";  /* Display: ߁ */
}

HTML Decimal:

<p>HTML decimal: &#1985;</p>  <!-- Display: ߁ -->

HTML Hexadecimal:

<p>HTML hex: &#x07C1;</p>  <!-- Display: ߁ -->

URL Encoding:

// ߁ URL encoding
https://unicodefinder.com/search.php?query=%DF%81

Encodings

MD5:

cb375b085449d21e6b05bc9a9eedfbac

SHA1:

fdc1e2f1aa5886d4e8131b8efcebefebbeae1bfe

Base64:

34E=