Unicode Finder

"ퟰ" U+D7F0(HANGUL JONGSEONG SIOS-CHIEUCH)

U+D7F0
블록 이름
Hangul Jamo Extended-B
이름
HANGUL JONGSEONG SIOS-CHIEUCH

Programming

C
\uD7F0
JavaScript
\uD7F0
Java
\uD7F0
Json
\uD7F0
Python
\uD7F0
Perl
\x{D7F0}
PHP
\x{D7F0}
Ruby
\u{D7F0}
Rust
\u{D7F0}
Go
\uD7F0

Web

CSS
\00D7F0
HtmlDecimal
ퟰ
HtmlHexadecimal
ퟰ
Url
%ED%9F%B0

Code

MD5
18c39adacd9c8a76037343be33eb3670
Sha1
a65244f1d8d6946205ad59fff45708d2b4de802b
Base64
7Z+w

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uD7F0';
console.log(char);  // Output: ퟰ

Java:

char c = '\uD7F0';
System.out.println(c);  // Output: ퟰ

JSON:

{"text": "\uD7F0"}  // Value: ퟰ

Python:

char = '\uD7F0'
print(char)  # Output: ퟰ

Perl:

my $char = "\x{D7F0}";
print $char;  # Output: ퟰ

PHP:

$char = "\x{D7F0}";
echo $char;  // Output: ퟰ

Ruby:

char = "\u{D7F0}"
puts char  # Output: ퟰ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#55280;</p>  <!-- Display: ퟰ -->

HTML Hexadecimal:

<p>HTML hex: &#xD7F0;</p>  <!-- Display: ퟰ -->

URL Encoding:

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

Encodings

MD5:

18c39adacd9c8a76037343be33eb3670

SHA1:

a65244f1d8d6946205ad59fff45708d2b4de802b

Base64:

7Z+w