Unicode Finder

"ퟫ" U+D7EB(HANGUL JONGSEONG SIOS-KAPYEOUNPIEUP)

U+D7EB
블록 이름
Hangul Jamo Extended-B
이름
HANGUL JONGSEONG SIOS-KAPYEOUNPIEUP

Programming

C
\uD7EB
JavaScript
\uD7EB
Java
\uD7EB
Json
\uD7EB
Python
\uD7EB
Perl
\x{D7EB}
PHP
\x{D7EB}
Ruby
\u{D7EB}
Rust
\u{D7EB}
Go
\uD7EB

Web

CSS
\00D7EB
HtmlDecimal
ퟫ
HtmlHexadecimal
ퟫ
Url
%ED%9F%AB

Code

MD5
30d0e3dff36f4601981a2ad89478b5aa
Sha1
2cc6f511f499d8af754e8d17f65eca0d35611486
Base64
7Z+r

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uD7EB';
console.log(char);  // Output: ퟫ

Java:

char c = '\uD7EB';
System.out.println(c);  // Output: ퟫ

JSON:

{"text": "\uD7EB"}  // Value: ퟫ

Python:

char = '\uD7EB'
print(char)  # Output: ퟫ

Perl:

my $char = "\x{D7EB}";
print $char;  # Output: ퟫ

PHP:

$char = "\x{D7EB}";
echo $char;  // Output: ퟫ

Ruby:

char = "\u{D7EB}"
puts char  # Output: ퟫ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#55275;</p>  <!-- Display: ퟫ -->

HTML Hexadecimal:

<p>HTML hex: &#xD7EB;</p>  <!-- Display: ퟫ -->

URL Encoding:

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

Encodings

MD5:

30d0e3dff36f4601981a2ad89478b5aa

SHA1:

2cc6f511f499d8af754e8d17f65eca0d35611486

Base64:

7Z+r