Unicode Finder

"흿" U+D77F(HANGUL SYLLABLE HYIS)

U+D77F
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE HYIS

Programming

C
\uD77F
JavaScript
\uD77F
Java
\uD77F
Json
\uD77F
Python
\uD77F
Perl
\x{D77F}
PHP
\x{D77F}
Ruby
\u{D77F}
Rust
\u{D77F}
Go
\uD77F

Web

CSS
\00D77F
HtmlDecimal
흿
HtmlHexadecimal
흿
Url
%ED%9D%BF

Code

MD5
9a43f93e8451bf0a515e1e540700787d
Sha1
3216894c60319ddcd84a057dcdd14f7cdf922f56
Base64
7Z2/

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uD77F';
console.log(char);  // Output: 흿

Java:

char c = '\uD77F';
System.out.println(c);  // Output: 흿

JSON:

{"text": "\uD77F"}  // Value: 흿

Python:

char = '\uD77F'
print(char)  # Output: 흿

Perl:

my $char = "\x{D77F}";
print $char;  # Output: 흿

PHP:

$char = "\x{D77F}";
echo $char;  // Output: 흿

Ruby:

char = "\u{D77F}"
puts char  # Output: 흿

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#55167;</p>  <!-- Display: 흿 -->

HTML Hexadecimal:

<p>HTML hex: &#xD77F;</p>  <!-- Display: 흿 -->

URL Encoding:

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

Encodings

MD5:

9a43f93e8451bf0a515e1e540700787d

SHA1:

3216894c60319ddcd84a057dcdd14f7cdf922f56

Base64:

7Z2/