Unicode Finder

"ퟶ" U+D7F6(HANGUL JONGSEONG YESIEUNG-HIEUH)

U+D7F6
블록 이름
Hangul Jamo Extended-B
이름
HANGUL JONGSEONG YESIEUNG-HIEUH

Programming

C
\uD7F6
JavaScript
\uD7F6
Java
\uD7F6
Json
\uD7F6
Python
\uD7F6
Perl
\x{D7F6}
PHP
\x{D7F6}
Ruby
\u{D7F6}
Rust
\u{D7F6}
Go
\uD7F6

Web

CSS
\00D7F6
HtmlDecimal
ퟶ
HtmlHexadecimal
ퟶ
Url
%ED%9F%B6

Code

MD5
5174bd86783deeb39f5788fe6866ce60
Sha1
b3d5e7a8f5106493ad538e988bebfb724ba15681
Base64
7Z+2

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uD7F6';
console.log(char);  // Output: ퟶ

Java:

char c = '\uD7F6';
System.out.println(c);  // Output: ퟶ

JSON:

{"text": "\uD7F6"}  // Value: ퟶ

Python:

char = '\uD7F6'
print(char)  # Output: ퟶ

Perl:

my $char = "\x{D7F6}";
print $char;  # Output: ퟶ

PHP:

$char = "\x{D7F6}";
echo $char;  // Output: ퟶ

Ruby:

char = "\u{D7F6}"
puts char  # Output: ퟶ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00D7F6";  /* Display: ퟶ */
}

HTML Decimal:

<p>HTML decimal: &#55286;</p>  <!-- Display: ퟶ -->

HTML Hexadecimal:

<p>HTML hex: &#xD7F6;</p>  <!-- Display: ퟶ -->

URL Encoding:

// ퟶ URL encoding
https://unicodefinder.com/search.php?query=%ED%9F%B6

Encodings

MD5:

5174bd86783deeb39f5788fe6866ce60

SHA1:

b3d5e7a8f5106493ad538e988bebfb724ba15681

Base64:

7Z+2