Unicode Finder

"폹" U+D3F9(HANGUL SYLLABLE POLT)

U+D3F9
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE POLT

Programming

C
\uD3F9
JavaScript
\uD3F9
Java
\uD3F9
Json
\uD3F9
Python
\uD3F9
Perl
\x{D3F9}
PHP
\x{D3F9}
Ruby
\u{D3F9}
Rust
\u{D3F9}
Go
\uD3F9

Web

CSS
\00D3F9
HtmlDecimal
폹
HtmlHexadecimal
폹
Url
%ED%8F%B9

Code

MD5
2a11563c5c35567eb697543642103134
Sha1
3bd188a9eb9524f3d88a0ee42a4086e50fc00dd7
Base64
7Y+5

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uD3F9';
console.log(char);  // Output: 폹

Java:

char c = '\uD3F9';
System.out.println(c);  // Output: 폹

JSON:

{"text": "\uD3F9"}  // Value: 폹

Python:

char = '\uD3F9'
print(char)  # Output: 폹

Perl:

my $char = "\x{D3F9}";
print $char;  # Output: 폹

PHP:

$char = "\x{D3F9}";
echo $char;  // Output: 폹

Ruby:

char = "\u{D3F9}"
puts char  # Output: 폹

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#54265;</p>  <!-- Display: 폹 -->

HTML Hexadecimal:

<p>HTML hex: &#xD3F9;</p>  <!-- Display: 폹 -->

URL Encoding:

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

Encodings

MD5:

2a11563c5c35567eb697543642103134

SHA1:

3bd188a9eb9524f3d88a0ee42a4086e50fc00dd7

Base64:

7Y+5