Unicode Finder

"픟" U+D51F(HANGUL SYLLABLE PEUH)

U+D51F
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE PEUH

Programming

C
\uD51F
JavaScript
\uD51F
Java
\uD51F
Json
\uD51F
Python
\uD51F
Perl
\x{D51F}
PHP
\x{D51F}
Ruby
\u{D51F}
Rust
\u{D51F}
Go
\uD51F

Web

CSS
\00D51F
HtmlDecimal
픟
HtmlHexadecimal
픟
Url
%ED%94%9F

Code

MD5
fced3b8555e3b27fe0e0e61b834aae48
Sha1
cf1a57d8a466d513a34aabf8148f4feb3c37149c
Base64
7ZSf

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uD51F';
console.log(char);  // Output: 픟

Java:

char c = '\uD51F';
System.out.println(c);  // Output: 픟

JSON:

{"text": "\uD51F"}  // Value: 픟

Python:

char = '\uD51F'
print(char)  # Output: 픟

Perl:

my $char = "\x{D51F}";
print $char;  # Output: 픟

PHP:

$char = "\x{D51F}";
echo $char;  // Output: 픟

Ruby:

char = "\u{D51F}"
puts char  # Output: 픟

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#54559;</p>  <!-- Display: 픟 -->

HTML Hexadecimal:

<p>HTML hex: &#xD51F;</p>  <!-- Display: 픟 -->

URL Encoding:

// 픟 URL encoding
https://unicodefinder.com/search.php?query=%ED%94%9F

Encodings

MD5:

fced3b8555e3b27fe0e0e61b834aae48

SHA1:

cf1a57d8a466d513a34aabf8148f4feb3c37149c

Base64:

7ZSf