Unicode Finder

"푟" U+D45F(HANGUL SYLLABLE PYOGS)

U+D45F
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE PYOGS

Programming

C
\uD45F
JavaScript
\uD45F
Java
\uD45F
Json
\uD45F
Python
\uD45F
Perl
\x{D45F}
PHP
\x{D45F}
Ruby
\u{D45F}
Rust
\u{D45F}
Go
\uD45F

Web

CSS
\00D45F
HtmlDecimal
푟
HtmlHexadecimal
푟
Url
%ED%91%9F

Code

MD5
b8bb78964fb9b6426d26d956ceb39307
Sha1
d1df9927d931879a8911c0c51995796c941e6897
Base64
7ZGf

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uD45F';
console.log(char);  // Output: 푟

Java:

char c = '\uD45F';
System.out.println(c);  // Output: 푟

JSON:

{"text": "\uD45F"}  // Value: 푟

Python:

char = '\uD45F'
print(char)  # Output: 푟

Perl:

my $char = "\x{D45F}";
print $char;  # Output: 푟

PHP:

$char = "\x{D45F}";
echo $char;  // Output: 푟

Ruby:

char = "\u{D45F}"
puts char  # Output: 푟

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#54367;</p>  <!-- Display: 푟 -->

HTML Hexadecimal:

<p>HTML hex: &#xD45F;</p>  <!-- Display: 푟 -->

URL Encoding:

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

Encodings

MD5:

b8bb78964fb9b6426d26d956ceb39307

SHA1:

d1df9927d931879a8911c0c51995796c941e6897

Base64:

7ZGf