Unicode Finder

"ퟝ" U+D7DD(HANGUL JONGSEONG KAPYEOUNRIEUL)

U+D7DD
블록 이름
Hangul Jamo Extended-B
이름
HANGUL JONGSEONG KAPYEOUNRIEUL

Programming

C
\uD7DD
JavaScript
\uD7DD
Java
\uD7DD
Json
\uD7DD
Python
\uD7DD
Perl
\x{D7DD}
PHP
\x{D7DD}
Ruby
\u{D7DD}
Rust
\u{D7DD}
Go
\uD7DD

Web

CSS
\00D7DD
HtmlDecimal
ퟝ
HtmlHexadecimal
ퟝ
Url
%ED%9F%9D

Code

MD5
3d7d3989f427810f3be7e97fb3d0e817
Sha1
e13a46d54a0c920e06f850d84534348c0fd39c42
Base64
7Z+d

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uD7DD';
console.log(char);  // Output: ퟝ

Java:

char c = '\uD7DD';
System.out.println(c);  // Output: ퟝ

JSON:

{"text": "\uD7DD"}  // Value: ퟝ

Python:

char = '\uD7DD'
print(char)  # Output: ퟝ

Perl:

my $char = "\x{D7DD}";
print $char;  # Output: ퟝ

PHP:

$char = "\x{D7DD}";
echo $char;  // Output: ퟝ

Ruby:

char = "\u{D7DD}"
puts char  # Output: ퟝ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#55261;</p>  <!-- Display: ퟝ -->

HTML Hexadecimal:

<p>HTML hex: &#xD7DD;</p>  <!-- Display: ퟝ -->

URL Encoding:

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

Encodings

MD5:

3d7d3989f427810f3be7e97fb3d0e817

SHA1:

e13a46d54a0c920e06f850d84534348c0fd39c42

Base64:

7Z+d