Unicode Finder

"펏" U+D38F(HANGUL SYLLABLE PEOS)

U+D38F
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE PEOS

Programming

C
\uD38F
JavaScript
\uD38F
Java
\uD38F
Json
\uD38F
Python
\uD38F
Perl
\x{D38F}
PHP
\x{D38F}
Ruby
\u{D38F}
Rust
\u{D38F}
Go
\uD38F

Web

CSS
\00D38F
HtmlDecimal
펏
HtmlHexadecimal
펏
Url
%ED%8E%8F

Code

MD5
7d766f09472d9d2a20e7d3dc25f1c00a
Sha1
2baa8a340e928e6b7e5b9483af28bc171f6773aa
Base64
7Y6P

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uD38F';
console.log(char);  // Output: 펏

Java:

char c = '\uD38F';
System.out.println(c);  // Output: 펏

JSON:

{"text": "\uD38F"}  // Value: 펏

Python:

char = '\uD38F'
print(char)  # Output: 펏

Perl:

my $char = "\x{D38F}";
print $char;  # Output: 펏

PHP:

$char = "\x{D38F}";
echo $char;  // Output: 펏

Ruby:

char = "\u{D38F}"
puts char  # Output: 펏

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#54159;</p>  <!-- Display: 펏 -->

HTML Hexadecimal:

<p>HTML hex: &#xD38F;</p>  <!-- Display: 펏 -->

URL Encoding:

// 펏 URL encoding
https://unicodefinder.com/search.php?query=%ED%8E%8F

Encodings

MD5:

7d766f09472d9d2a20e7d3dc25f1c00a

SHA1:

2baa8a340e928e6b7e5b9483af28bc171f6773aa

Base64:

7Y6P