Unicode Finder

"핁" U+D541(HANGUL SYLLABLE PINJ)

U+D541
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE PINJ

Programming

C
\uD541
JavaScript
\uD541
Java
\uD541
Json
\uD541
Python
\uD541
Perl
\x{D541}
PHP
\x{D541}
Ruby
\u{D541}
Rust
\u{D541}
Go
\uD541

Web

CSS
\00D541
HtmlDecimal
핁
HtmlHexadecimal
핁
Url
%ED%95%81

Code

MD5
24eb2145d7a8ebf5af3876c0ceca7ed4
Sha1
98c313b5233e856e6a1abbd812b1f69e77142a60
Base64
7ZWB

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uD541';
console.log(char);  // Output: 핁

Java:

char c = '\uD541';
System.out.println(c);  // Output: 핁

JSON:

{"text": "\uD541"}  // Value: 핁

Python:

char = '\uD541'
print(char)  # Output: 핁

Perl:

my $char = "\x{D541}";
print $char;  # Output: 핁

PHP:

$char = "\x{D541}";
echo $char;  // Output: 핁

Ruby:

char = "\u{D541}"
puts char  # Output: 핁

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#54593;</p>  <!-- Display: 핁 -->

HTML Hexadecimal:

<p>HTML hex: &#xD541;</p>  <!-- Display: 핁 -->

URL Encoding:

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

Encodings

MD5:

24eb2145d7a8ebf5af3876c0ceca7ed4

SHA1:

98c313b5233e856e6a1abbd812b1f69e77142a60

Base64:

7ZWB