Unicode Finder

"퍤" U+D364(HANGUL SYLLABLE PYAEN)

U+D364
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE PYAEN

Programming

C
\uD364
JavaScript
\uD364
Java
\uD364
Json
\uD364
Python
\uD364
Perl
\x{D364}
PHP
\x{D364}
Ruby
\u{D364}
Rust
\u{D364}
Go
\uD364

Web

CSS
\00D364
HtmlDecimal
퍤
HtmlHexadecimal
퍤
Url
%ED%8D%A4

Code

MD5
0eb73bb67fd272f6d263bc2ae5bb45ee
Sha1
853147bedcb5710549402cee8b2cf58c20b7ba07
Base64
7Y2k

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uD364';
console.log(char);  // Output: 퍤

Java:

char c = '\uD364';
System.out.println(c);  // Output: 퍤

JSON:

{"text": "\uD364"}  // Value: 퍤

Python:

char = '\uD364'
print(char)  # Output: 퍤

Perl:

my $char = "\x{D364}";
print $char;  # Output: 퍤

PHP:

$char = "\x{D364}";
echo $char;  // Output: 퍤

Ruby:

char = "\u{D364}"
puts char  # Output: 퍤

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#54116;</p>  <!-- Display: 퍤 -->

HTML Hexadecimal:

<p>HTML hex: &#xD364;</p>  <!-- Display: 퍤 -->

URL Encoding:

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

Encodings

MD5:

0eb73bb67fd272f6d263bc2ae5bb45ee

SHA1:

853147bedcb5710549402cee8b2cf58c20b7ba07

Base64:

7Y2k