Unicode Finder

"퐄" U+D404(HANGUL SYLLABLE POK)

U+D404
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE POK

Programming

C
\uD404
JavaScript
\uD404
Java
\uD404
Json
\uD404
Python
\uD404
Perl
\x{D404}
PHP
\x{D404}
Ruby
\u{D404}
Rust
\u{D404}
Go
\uD404

Web

CSS
\00D404
HtmlDecimal
퐄
HtmlHexadecimal
퐄
Url
%ED%90%84

Code

MD5
2b192de5d2c2cc4e477ba6662c3bfacb
Sha1
8ceb819a7f226a8a39e15bbf44613d973c52ea71
Base64
7ZCE

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uD404';
console.log(char);  // Output: 퐄

Java:

char c = '\uD404';
System.out.println(c);  // Output: 퐄

JSON:

{"text": "\uD404"}  // Value: 퐄

Python:

char = '\uD404'
print(char)  # Output: 퐄

Perl:

my $char = "\x{D404}";
print $char;  # Output: 퐄

PHP:

$char = "\x{D404}";
echo $char;  // Output: 퐄

Ruby:

char = "\u{D404}"
puts char  # Output: 퐄

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#54276;</p>  <!-- Display: 퐄 -->

HTML Hexadecimal:

<p>HTML hex: &#xD404;</p>  <!-- Display: 퐄 -->

URL Encoding:

// 퐄 URL encoding
https://unicodefinder.com/search.php?query=%ED%90%84

Encodings

MD5:

2b192de5d2c2cc4e477ba6662c3bfacb

SHA1:

8ceb819a7f226a8a39e15bbf44613d973c52ea71

Base64:

7ZCE