Unicode Finder

"퓬" U+D4EC(HANGUL SYLLABLE PYUN)

U+D4EC
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE PYUN

Programming

C
\uD4EC
JavaScript
\uD4EC
Java
\uD4EC
Json
\uD4EC
Python
\uD4EC
Perl
\x{D4EC}
PHP
\x{D4EC}
Ruby
\u{D4EC}
Rust
\u{D4EC}
Go
\uD4EC

Web

CSS
\00D4EC
HtmlDecimal
퓬
HtmlHexadecimal
퓬
Url
%ED%93%AC

Code

MD5
25d629cbfefc5deebafe55fa22cf6044
Sha1
04385bc086c99a25fd54d005e99c5dba9b63dc8d
Base64
7ZOs

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uD4EC';
console.log(char);  // Output: 퓬

Java:

char c = '\uD4EC';
System.out.println(c);  // Output: 퓬

JSON:

{"text": "\uD4EC"}  // Value: 퓬

Python:

char = '\uD4EC'
print(char)  # Output: 퓬

Perl:

my $char = "\x{D4EC}";
print $char;  # Output: 퓬

PHP:

$char = "\x{D4EC}";
echo $char;  // Output: 퓬

Ruby:

char = "\u{D4EC}"
puts char  # Output: 퓬

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#54508;</p>  <!-- Display: 퓬 -->

HTML Hexadecimal:

<p>HTML hex: &#xD4EC;</p>  <!-- Display: 퓬 -->

URL Encoding:

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

Encodings

MD5:

25d629cbfefc5deebafe55fa22cf6044

SHA1:

04385bc086c99a25fd54d005e99c5dba9b63dc8d

Base64:

7ZOs