Unicode Finder

"ퟬ" U+D7EC(HANGUL JONGSEONG SSANGSIOS-KIYEOK)

U+D7EC
블록 이름
Hangul Jamo Extended-B
이름
HANGUL JONGSEONG SSANGSIOS-KIYEOK

Programming

C
\uD7EC
JavaScript
\uD7EC
Java
\uD7EC
Json
\uD7EC
Python
\uD7EC
Perl
\x{D7EC}
PHP
\x{D7EC}
Ruby
\u{D7EC}
Rust
\u{D7EC}
Go
\uD7EC

Web

CSS
\00D7EC
HtmlDecimal
ퟬ
HtmlHexadecimal
ퟬ
Url
%ED%9F%AC

Code

MD5
c8d8d53a24727ecc5610e88716adac1a
Sha1
73d12886f8f32238f350c5e09eb5192a7a467850
Base64
7Z+s

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uD7EC';
console.log(char);  // Output: ퟬ

Java:

char c = '\uD7EC';
System.out.println(c);  // Output: ퟬ

JSON:

{"text": "\uD7EC"}  // Value: ퟬ

Python:

char = '\uD7EC'
print(char)  # Output: ퟬ

Perl:

my $char = "\x{D7EC}";
print $char;  # Output: ퟬ

PHP:

$char = "\x{D7EC}";
echo $char;  // Output: ퟬ

Ruby:

char = "\u{D7EC}"
puts char  # Output: ퟬ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#55276;</p>  <!-- Display: ퟬ -->

HTML Hexadecimal:

<p>HTML hex: &#xD7EC;</p>  <!-- Display: ퟬ -->

URL Encoding:

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

Encodings

MD5:

c8d8d53a24727ecc5610e88716adac1a

SHA1:

73d12886f8f32238f350c5e09eb5192a7a467850

Base64:

7Z+s