Unicode Finder

"풫" U+D4AB(HANGUL SYLLABLE PWEOC)

U+D4AB
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE PWEOC

Programming

C
\uD4AB
JavaScript
\uD4AB
Java
\uD4AB
Json
\uD4AB
Python
\uD4AB
Perl
\x{D4AB}
PHP
\x{D4AB}
Ruby
\u{D4AB}
Rust
\u{D4AB}
Go
\uD4AB

Web

CSS
\00D4AB
HtmlDecimal
풫
HtmlHexadecimal
풫
Url
%ED%92%AB

Code

MD5
a97af796b51cfe66d0511fd9a3d403a7
Sha1
a568253c97279d93973979184c43699b625bd339
Base64
7ZKr

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uD4AB';
console.log(char);  // Output: 풫

Java:

char c = '\uD4AB';
System.out.println(c);  // Output: 풫

JSON:

{"text": "\uD4AB"}  // Value: 풫

Python:

char = '\uD4AB'
print(char)  # Output: 풫

Perl:

my $char = "\x{D4AB}";
print $char;  # Output: 풫

PHP:

$char = "\x{D4AB}";
echo $char;  // Output: 풫

Ruby:

char = "\u{D4AB}"
puts char  # Output: 풫

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#54443;</p>  <!-- Display: 풫 -->

HTML Hexadecimal:

<p>HTML hex: &#xD4AB;</p>  <!-- Display: 풫 -->

URL Encoding:

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

Encodings

MD5:

a97af796b51cfe66d0511fd9a3d403a7

SHA1:

a568253c97279d93973979184c43699b625bd339

Base64:

7ZKr