Unicode Finder

"헉" U+D5C9(HANGUL SYLLABLE HEOG)

U+D5C9
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE HEOG

Programming

C
\uD5C9
JavaScript
\uD5C9
Java
\uD5C9
Json
\uD5C9
Python
\uD5C9
Perl
\x{D5C9}
PHP
\x{D5C9}
Ruby
\u{D5C9}
Rust
\u{D5C9}
Go
\uD5C9

Web

CSS
\00D5C9
HtmlDecimal
헉
HtmlHexadecimal
헉
Url
%ED%97%89

Code

MD5
556ccb365c153d147ebbb9093b44caa0
Sha1
b44b00eaa4934c581ef8f0805e30f9262fa10c77
Base64
7ZeJ

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uD5C9';
console.log(char);  // Output: 헉

Java:

char c = '\uD5C9';
System.out.println(c);  // Output: 헉

JSON:

{"text": "\uD5C9"}  // Value: 헉

Python:

char = '\uD5C9'
print(char)  # Output: 헉

Perl:

my $char = "\x{D5C9}";
print $char;  # Output: 헉

PHP:

$char = "\x{D5C9}";
echo $char;  // Output: 헉

Ruby:

char = "\u{D5C9}"
puts char  # Output: 헉

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#54729;</p>  <!-- Display: 헉 -->

HTML Hexadecimal:

<p>HTML hex: &#xD5C9;</p>  <!-- Display: 헉 -->

URL Encoding:

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

Encodings

MD5:

556ccb365c153d147ebbb9093b44caa0

SHA1:

b44b00eaa4934c581ef8f0805e30f9262fa10c77

Base64:

7ZeJ