Unicode Finder

"߷" U+07F7(NKO SYMBOL GBAKURUNEN)

߷
U+07F7
Nome do Bloco
NKo
Nome
NKO SYMBOL GBAKURUNEN

Programming

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

Web

CSS
\0007F7
HtmlDecimal
߷
HtmlHexadecimal
߷
Url
%DF%B7

Code

MD5
ad0377be9f80b599183784af382004f6
Sha1
22a1ef7ebfb8f0313894f593047268692585a999
Base64
37c=

Exemplos de Uso

Programming Languages

C:

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

JavaScript:

const char = '\u07F7';
console.log(char);  // Output: ߷

Java:

char c = '\u07F7';
System.out.println(c);  // Output: ߷

JSON:

{"text": "\u07F7"}  // Value: ߷

Python:

char = '\u07F7'
print(char)  # Output: ߷

Perl:

my $char = "\x{07F7}";
print $char;  # Output: ߷

PHP:

$char = "\x{07F7}";
echo $char;  // Output: ߷

Ruby:

char = "\u{07F7}"
puts char  # Output: ߷

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#2039;</p>  <!-- Display: ߷ -->

HTML Hexadecimal:

<p>HTML hex: &#x07F7;</p>  <!-- Display: ߷ -->

URL Encoding:

// ߷ URL encoding
https://unicodefinder.com/search.php?query=%DF%B7

Encodings

MD5:

ad0377be9f80b599183784af382004f6

SHA1:

22a1ef7ebfb8f0313894f593047268692585a999

Base64:

37c=