Unicode Finder

"헋" U+D5CB(HANGUL SYLLABLE HEOGS)

U+D5CB
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE HEOGS

Programming

C
\uD5CB
JavaScript
\uD5CB
Java
\uD5CB
Json
\uD5CB
Python
\uD5CB
Perl
\x{D5CB}
PHP
\x{D5CB}
Ruby
\u{D5CB}
Rust
\u{D5CB}
Go
\uD5CB

Web

CSS
\00D5CB
HtmlDecimal
헋
HtmlHexadecimal
헋
Url
%ED%97%8B

Code

MD5
0814126cdb88c4cb9486b00cc360d4ac
Sha1
2de9984285146e8b440d939b0e77ce90dc7ccc5d
Base64
7ZeL

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uD5CB';
console.log(char);  // Output: 헋

Java:

char c = '\uD5CB';
System.out.println(c);  // Output: 헋

JSON:

{"text": "\uD5CB"}  // Value: 헋

Python:

char = '\uD5CB'
print(char)  # Output: 헋

Perl:

my $char = "\x{D5CB}";
print $char;  # Output: 헋

PHP:

$char = "\x{D5CB}";
echo $char;  // Output: 헋

Ruby:

char = "\u{D5CB}"
puts char  # Output: 헋

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#54731;</p>  <!-- Display: 헋 -->

HTML Hexadecimal:

<p>HTML hex: &#xD5CB;</p>  <!-- Display: 헋 -->

URL Encoding:

// 헋 URL encoding
https://unicodefinder.com/search.php?query=%ED%97%8B

Encodings

MD5:

0814126cdb88c4cb9486b00cc360d4ac

SHA1:

2de9984285146e8b440d939b0e77ce90dc7ccc5d

Base64:

7ZeL