Unicode Finder

"퓭" U+D4ED(HANGUL SYLLABLE PYUNJ)

U+D4ED
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE PYUNJ

Programming

C
\uD4ED
JavaScript
\uD4ED
Java
\uD4ED
Json
\uD4ED
Python
\uD4ED
Perl
\x{D4ED}
PHP
\x{D4ED}
Ruby
\u{D4ED}
Rust
\u{D4ED}
Go
\uD4ED

Web

CSS
\00D4ED
HtmlDecimal
퓭
HtmlHexadecimal
퓭
Url
%ED%93%AD

Code

MD5
4197dd555b5e758f6eced3f74d4e04cf
Sha1
7a83db951544b3481d1ff89fac3c52fc9ff2b7b9
Base64
7ZOt

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uD4ED';
console.log(char);  // Output: 퓭

Java:

char c = '\uD4ED';
System.out.println(c);  // Output: 퓭

JSON:

{"text": "\uD4ED"}  // Value: 퓭

Python:

char = '\uD4ED'
print(char)  # Output: 퓭

Perl:

my $char = "\x{D4ED}";
print $char;  # Output: 퓭

PHP:

$char = "\x{D4ED}";
echo $char;  // Output: 퓭

Ruby:

char = "\u{D4ED}"
puts char  # Output: 퓭

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#54509;</p>  <!-- Display: 퓭 -->

HTML Hexadecimal:

<p>HTML hex: &#xD4ED;</p>  <!-- Display: 퓭 -->

URL Encoding:

// 퓭 URL encoding
https://unicodefinder.com/search.php?query=%ED%93%AD

Encodings

MD5:

4197dd555b5e758f6eced3f74d4e04cf

SHA1:

7a83db951544b3481d1ff89fac3c52fc9ff2b7b9

Base64:

7ZOt