Unicode Finder

"패" U+D328(HANGUL SYLLABLE PAE)

U+D328
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE PAE

Programming

C
\uD328
JavaScript
\uD328
Java
\uD328
Json
\uD328
Python
\uD328
Perl
\x{D328}
PHP
\x{D328}
Ruby
\u{D328}
Rust
\u{D328}
Go
\uD328

Web

CSS
\00D328
HtmlDecimal
패
HtmlHexadecimal
패
Url
%ED%8C%A8

Code

MD5
7c47cbef0b050c914f78a6f347d02f76
Sha1
36260e2ce5f3e5571b03122ed148e28bf7459d75
Base64
7Yyo

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uD328';
console.log(char);  // Output: 패

Java:

char c = '\uD328';
System.out.println(c);  // Output: 패

JSON:

{"text": "\uD328"}  // Value: 패

Python:

char = '\uD328'
print(char)  # Output: 패

Perl:

my $char = "\x{D328}";
print $char;  # Output: 패

PHP:

$char = "\x{D328}";
echo $char;  // Output: 패

Ruby:

char = "\u{D328}"
puts char  # Output: 패

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#54056;</p>  <!-- Display: 패 -->

HTML Hexadecimal:

<p>HTML hex: &#xD328;</p>  <!-- Display: 패 -->

URL Encoding:

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

Encodings

MD5:

7c47cbef0b050c914f78a6f347d02f76

SHA1:

36260e2ce5f3e5571b03122ed148e28bf7459d75

Base64:

7Yyo