Unicode Finder

"퓢" U+D4E2(HANGUL SYLLABLE PWIJ)

U+D4E2
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE PWIJ

Programming

C
\uD4E2
JavaScript
\uD4E2
Java
\uD4E2
Json
\uD4E2
Python
\uD4E2
Perl
\x{D4E2}
PHP
\x{D4E2}
Ruby
\u{D4E2}
Rust
\u{D4E2}
Go
\uD4E2

Web

CSS
\00D4E2
HtmlDecimal
퓢
HtmlHexadecimal
퓢
Url
%ED%93%A2

Code

MD5
77ca2ab39a71b0cd4de85d0d93e2da6f
Sha1
89cf8b09e60355a05a1201bbde930f99fb46aac7
Base64
7ZOi

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uD4E2';
console.log(char);  // Output: 퓢

Java:

char c = '\uD4E2';
System.out.println(c);  // Output: 퓢

JSON:

{"text": "\uD4E2"}  // Value: 퓢

Python:

char = '\uD4E2'
print(char)  # Output: 퓢

Perl:

my $char = "\x{D4E2}";
print $char;  # Output: 퓢

PHP:

$char = "\x{D4E2}";
echo $char;  // Output: 퓢

Ruby:

char = "\u{D4E2}"
puts char  # Output: 퓢

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#54498;</p>  <!-- Display: 퓢 -->

HTML Hexadecimal:

<p>HTML hex: &#xD4E2;</p>  <!-- Display: 퓢 -->

URL Encoding:

// 퓢 URL encoding
https://unicodefinder.com/search.php?query=%ED%93%A2

Encodings

MD5:

77ca2ab39a71b0cd4de85d0d93e2da6f

SHA1:

89cf8b09e60355a05a1201bbde930f99fb46aac7

Base64:

7ZOi