Unicode Finder

"߂" U+07C2(NKO DIGIT TWO)

߂
U+07C2
Blocknamn
NKo
Namn
NKO DIGIT TWO

Programming

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

Web

CSS
\0007C2
HtmlDecimal
߂
HtmlHexadecimal
߂
Url
%DF%82

Code

MD5
c88644de97cfcd6b7267ece9a228dea8
Sha1
f52c16615a4289ccd3831b66376d5b11a07f3892
Base64
34I=

Användningsexempel

Programming Languages

C:

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

JavaScript:

const char = '\u07C2';
console.log(char);  // Output: ߂

Java:

char c = '\u07C2';
System.out.println(c);  // Output: ߂

JSON:

{"text": "\u07C2"}  // Value: ߂

Python:

char = '\u07C2'
print(char)  # Output: ߂

Perl:

my $char = "\x{07C2}";
print $char;  # Output: ߂

PHP:

$char = "\x{07C2}";
echo $char;  // Output: ߂

Ruby:

char = "\u{07C2}"
puts char  # Output: ߂

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#1986;</p>  <!-- Display: ߂ -->

HTML Hexadecimal:

<p>HTML hex: &#x07C2;</p>  <!-- Display: ߂ -->

URL Encoding:

// ߂ URL encoding
https://unicodefinder.com/search.php?query=%DF%82

Encodings

MD5:

c88644de97cfcd6b7267ece9a228dea8

SHA1:

f52c16615a4289ccd3831b66376d5b11a07f3892

Base64:

34I=