Unicode Finder

"흺" U+D77A(HANGUL SYLLABLE HYILP)

U+D77A
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE HYILP

Programming

C
\uD77A
JavaScript
\uD77A
Java
\uD77A
Json
\uD77A
Python
\uD77A
Perl
\x{D77A}
PHP
\x{D77A}
Ruby
\u{D77A}
Rust
\u{D77A}
Go
\uD77A

Web

CSS
\00D77A
HtmlDecimal
흺
HtmlHexadecimal
흺
Url
%ED%9D%BA

Code

MD5
061917a29d3e1c0c8ae5ce91d7827773
Sha1
184746e8927f5495aa3a16790dde304c386de3a0
Base64
7Z26

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uD77A';
console.log(char);  // Output: 흺

Java:

char c = '\uD77A';
System.out.println(c);  // Output: 흺

JSON:

{"text": "\uD77A"}  // Value: 흺

Python:

char = '\uD77A'
print(char)  # Output: 흺

Perl:

my $char = "\x{D77A}";
print $char;  # Output: 흺

PHP:

$char = "\x{D77A}";
echo $char;  // Output: 흺

Ruby:

char = "\u{D77A}"
puts char  # Output: 흺

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#55162;</p>  <!-- Display: 흺 -->

HTML Hexadecimal:

<p>HTML hex: &#xD77A;</p>  <!-- Display: 흺 -->

URL Encoding:

// 흺 URL encoding
https://unicodefinder.com/search.php?query=%ED%9D%BA

Encodings

MD5:

061917a29d3e1c0c8ae5ce91d7827773

SHA1:

184746e8927f5495aa3a16790dde304c386de3a0

Base64:

7Z26