Unicode Finder

"ퟂ" U+D7C2(HANGUL JUNGSEONG I-YO)

U+D7C2
블록 이름
Hangul Jamo Extended-B
이름
HANGUL JUNGSEONG I-YO

Programming

C
\uD7C2
JavaScript
\uD7C2
Java
\uD7C2
Json
\uD7C2
Python
\uD7C2
Perl
\x{D7C2}
PHP
\x{D7C2}
Ruby
\u{D7C2}
Rust
\u{D7C2}
Go
\uD7C2

Web

CSS
\00D7C2
HtmlDecimal
ퟂ
HtmlHexadecimal
ퟂ
Url
%ED%9F%82

Code

MD5
48af6cf85cd1f480bc7500f094b15069
Sha1
2159f7a6c851af8cef78123e33e900483156c594
Base64
7Z+C

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uD7C2';
console.log(char);  // Output: ퟂ

Java:

char c = '\uD7C2';
System.out.println(c);  // Output: ퟂ

JSON:

{"text": "\uD7C2"}  // Value: ퟂ

Python:

char = '\uD7C2'
print(char)  # Output: ퟂ

Perl:

my $char = "\x{D7C2}";
print $char;  # Output: ퟂ

PHP:

$char = "\x{D7C2}";
echo $char;  // Output: ퟂ

Ruby:

char = "\u{D7C2}"
puts char  # Output: ퟂ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#55234;</p>  <!-- Display: ퟂ -->

HTML Hexadecimal:

<p>HTML hex: &#xD7C2;</p>  <!-- Display: ퟂ -->

URL Encoding:

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

Encodings

MD5:

48af6cf85cd1f480bc7500f094b15069

SHA1:

2159f7a6c851af8cef78123e33e900483156c594

Base64:

7Z+C