Unicode Finder

"힡" U+D7A1(HANGUL SYLLABLE HIT)

U+D7A1
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE HIT

Programming

C
\uD7A1
JavaScript
\uD7A1
Java
\uD7A1
Json
\uD7A1
Python
\uD7A1
Perl
\x{D7A1}
PHP
\x{D7A1}
Ruby
\u{D7A1}
Rust
\u{D7A1}
Go
\uD7A1

Web

CSS
\00D7A1
HtmlDecimal
힡
HtmlHexadecimal
힡
Url
%ED%9E%A1

Code

MD5
8aef80ba405eedf4f3e42c58177af2c8
Sha1
0e5e38ba58dcfa5f0cb33c8540ec42feaf134fd5
Base64
7Z6h

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uD7A1';
console.log(char);  // Output: 힡

Java:

char c = '\uD7A1';
System.out.println(c);  // Output: 힡

JSON:

{"text": "\uD7A1"}  // Value: 힡

Python:

char = '\uD7A1'
print(char)  # Output: 힡

Perl:

my $char = "\x{D7A1}";
print $char;  # Output: 힡

PHP:

$char = "\x{D7A1}";
echo $char;  // Output: 힡

Ruby:

char = "\u{D7A1}"
puts char  # Output: 힡

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#55201;</p>  <!-- Display: 힡 -->

HTML Hexadecimal:

<p>HTML hex: &#xD7A1;</p>  <!-- Display: 힡 -->

URL Encoding:

// 힡 URL encoding
https://unicodefinder.com/search.php?query=%ED%9E%A1

Encodings

MD5:

8aef80ba405eedf4f3e42c58177af2c8

SHA1:

0e5e38ba58dcfa5f0cb33c8540ec42feaf134fd5

Base64:

7Z6h