Unicode Finder

"폚" U+D3DA(HANGUL SYLLABLE PYELM)

U+D3DA
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE PYELM

Programming

C
\uD3DA
JavaScript
\uD3DA
Java
\uD3DA
Json
\uD3DA
Python
\uD3DA
Perl
\x{D3DA}
PHP
\x{D3DA}
Ruby
\u{D3DA}
Rust
\u{D3DA}
Go
\uD3DA

Web

CSS
\00D3DA
HtmlDecimal
폚
HtmlHexadecimal
폚
Url
%ED%8F%9A

Code

MD5
03e9351292995b86a2dd239b058a1b2b
Sha1
06518797efe5453fd57bc93f8a5e77a4e1da2d89
Base64
7Y+a

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uD3DA';
console.log(char);  // Output: 폚

Java:

char c = '\uD3DA';
System.out.println(c);  // Output: 폚

JSON:

{"text": "\uD3DA"}  // Value: 폚

Python:

char = '\uD3DA'
print(char)  # Output: 폚

Perl:

my $char = "\x{D3DA}";
print $char;  # Output: 폚

PHP:

$char = "\x{D3DA}";
echo $char;  // Output: 폚

Ruby:

char = "\u{D3DA}"
puts char  # Output: 폚

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#54234;</p>  <!-- Display: 폚 -->

HTML Hexadecimal:

<p>HTML hex: &#xD3DA;</p>  <!-- Display: 폚 -->

URL Encoding:

// 폚 URL encoding
https://unicodefinder.com/search.php?query=%ED%8F%9A

Encodings

MD5:

03e9351292995b86a2dd239b058a1b2b

SHA1:

06518797efe5453fd57bc93f8a5e77a4e1da2d89

Base64:

7Y+a