Unicode Finder

"헭" U+D5ED(HANGUL SYLLABLE HELG)

U+D5ED
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE HELG

Programming

C
\uD5ED
JavaScript
\uD5ED
Java
\uD5ED
Json
\uD5ED
Python
\uD5ED
Perl
\x{D5ED}
PHP
\x{D5ED}
Ruby
\u{D5ED}
Rust
\u{D5ED}
Go
\uD5ED

Web

CSS
\00D5ED
HtmlDecimal
헭
HtmlHexadecimal
헭
Url
%ED%97%AD

Code

MD5
3781c8f1224cf3c66eeb1b7a9bd40863
Sha1
18f7fcc5b3925aed4532cb5af0f55102ebb1751e
Base64
7Zet

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uD5ED';
console.log(char);  // Output: 헭

Java:

char c = '\uD5ED';
System.out.println(c);  // Output: 헭

JSON:

{"text": "\uD5ED"}  // Value: 헭

Python:

char = '\uD5ED'
print(char)  # Output: 헭

Perl:

my $char = "\x{D5ED}";
print $char;  # Output: 헭

PHP:

$char = "\x{D5ED}";
echo $char;  // Output: 헭

Ruby:

char = "\u{D5ED}"
puts char  # Output: 헭

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#54765;</p>  <!-- Display: 헭 -->

HTML Hexadecimal:

<p>HTML hex: &#xD5ED;</p>  <!-- Display: 헭 -->

URL Encoding:

// 헭 URL encoding
https://unicodefinder.com/search.php?query=%ED%97%AD

Encodings

MD5:

3781c8f1224cf3c66eeb1b7a9bd40863

SHA1:

18f7fcc5b3925aed4532cb5af0f55102ebb1751e

Base64:

7Zet