Unicode Finder

"풁" U+D481(HANGUL SYLLABLE PULG)

U+D481
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE PULG

Programming

C
\uD481
JavaScript
\uD481
Java
\uD481
Json
\uD481
Python
\uD481
Perl
\x{D481}
PHP
\x{D481}
Ruby
\u{D481}
Rust
\u{D481}
Go
\uD481

Web

CSS
\00D481
HtmlDecimal
풁
HtmlHexadecimal
풁
Url
%ED%92%81

Code

MD5
4e02b010978d98f048cb5f0a73e9ce65
Sha1
b0ac2420e0e3a14432a31e463c86330c4a86e8eb
Base64
7ZKB

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uD481';
console.log(char);  // Output: 풁

Java:

char c = '\uD481';
System.out.println(c);  // Output: 풁

JSON:

{"text": "\uD481"}  // Value: 풁

Python:

char = '\uD481'
print(char)  # Output: 풁

Perl:

my $char = "\x{D481}";
print $char;  # Output: 풁

PHP:

$char = "\x{D481}";
echo $char;  // Output: 풁

Ruby:

char = "\u{D481}"
puts char  # Output: 풁

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#54401;</p>  <!-- Display: 풁 -->

HTML Hexadecimal:

<p>HTML hex: &#xD481;</p>  <!-- Display: 풁 -->

URL Encoding:

// 풁 URL encoding
https://unicodefinder.com/search.php?query=%ED%92%81

Encodings

MD5:

4e02b010978d98f048cb5f0a73e9ce65

SHA1:

b0ac2420e0e3a14432a31e463c86330c4a86e8eb

Base64:

7ZKB