Unicode Finder

"퍺" U+D37A(HANGUL SYLLABLE PYAEP)

U+D37A
區塊名稱
Hangul Syllables
名稱
HANGUL SYLLABLE PYAEP

Programming

C
\uD37A
JavaScript
\uD37A
Java
\uD37A
Json
\uD37A
Python
\uD37A
Perl
\x{D37A}
PHP
\x{D37A}
Ruby
\u{D37A}
Rust
\u{D37A}
Go
\uD37A

Web

CSS
\00D37A
HtmlDecimal
퍺
HtmlHexadecimal
퍺
Url
%ED%8D%BA

Code

MD5
13c51f00b8c6045713c2b167182d30c4
Sha1
9d2d794d26724f98047622255efeb38b5ea7be0f
Base64
7Y26

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\uD37A';
console.log(char);  // Output: 퍺

Java:

char c = '\uD37A';
System.out.println(c);  // Output: 퍺

JSON:

{"text": "\uD37A"}  // Value: 퍺

Python:

char = '\uD37A'
print(char)  # Output: 퍺

Perl:

my $char = "\x{D37A}";
print $char;  # Output: 퍺

PHP:

$char = "\x{D37A}";
echo $char;  // Output: 퍺

Ruby:

char = "\u{D37A}"
puts char  # Output: 퍺

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#54138;</p>  <!-- Display: 퍺 -->

HTML Hexadecimal:

<p>HTML hex: &#xD37A;</p>  <!-- Display: 퍺 -->

URL Encoding:

// 퍺 URL encoding
https://unicodefinder.com/search.php?query=%ED%8D%BA

Encodings

MD5:

13c51f00b8c6045713c2b167182d30c4

SHA1:

9d2d794d26724f98047622255efeb38b5ea7be0f

Base64:

7Y26