Unicode Finder

"파" U+D30C(HANGUL SYLLABLE PA)

U+D30C
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE PA

Programming

C
\uD30C
JavaScript
\uD30C
Java
\uD30C
Json
\uD30C
Python
\uD30C
Perl
\x{D30C}
PHP
\x{D30C}
Ruby
\u{D30C}
Rust
\u{D30C}
Go
\uD30C

Web

CSS
\00D30C
HtmlDecimal
파
HtmlHexadecimal
파
Url
%ED%8C%8C

Code

MD5
91b85f0fe6a82763efd0a98c4b7b206a
Sha1
4c537d1314627e3c39e69e61db145e91e181ebcc
Base64
7YyM

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uD30C';
console.log(char);  // Output: 파

Java:

char c = '\uD30C';
System.out.println(c);  // Output: 파

JSON:

{"text": "\uD30C"}  // Value: 파

Python:

char = '\uD30C'
print(char)  # Output: 파

Perl:

my $char = "\x{D30C}";
print $char;  # Output: 파

PHP:

$char = "\x{D30C}";
echo $char;  // Output: 파

Ruby:

char = "\u{D30C}"
puts char  # Output: 파

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#54028;</p>  <!-- Display: 파 -->

HTML Hexadecimal:

<p>HTML hex: &#xD30C;</p>  <!-- Display: 파 -->

URL Encoding:

// 파 URL encoding
https://unicodefinder.com/search.php?query=%ED%8C%8C

Encodings

MD5:

91b85f0fe6a82763efd0a98c4b7b206a

SHA1:

4c537d1314627e3c39e69e61db145e91e181ebcc

Base64:

7YyM