Unicode Finder

"훅" U+D6C5(HANGUL SYLLABLE HUG)

U+D6C5
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE HUG

Programming

C
\uD6C5
JavaScript
\uD6C5
Java
\uD6C5
Json
\uD6C5
Python
\uD6C5
Perl
\x{D6C5}
PHP
\x{D6C5}
Ruby
\u{D6C5}
Rust
\u{D6C5}
Go
\uD6C5

Web

CSS
\00D6C5
HtmlDecimal
훅
HtmlHexadecimal
훅
Url
%ED%9B%85

Code

MD5
de752128d651ee73c84ff99e70d24934
Sha1
2f91da15593d5dfd9c5d071b995eccdbee4beb61
Base64
7ZuF

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uD6C5';
console.log(char);  // Output: 훅

Java:

char c = '\uD6C5';
System.out.println(c);  // Output: 훅

JSON:

{"text": "\uD6C5"}  // Value: 훅

Python:

char = '\uD6C5'
print(char)  # Output: 훅

Perl:

my $char = "\x{D6C5}";
print $char;  # Output: 훅

PHP:

$char = "\x{D6C5}";
echo $char;  // Output: 훅

Ruby:

char = "\u{D6C5}"
puts char  # Output: 훅

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#54981;</p>  <!-- Display: 훅 -->

HTML Hexadecimal:

<p>HTML hex: &#xD6C5;</p>  <!-- Display: 훅 -->

URL Encoding:

// 훅 URL encoding
https://unicodefinder.com/search.php?query=%ED%9B%85

Encodings

MD5:

de752128d651ee73c84ff99e70d24934

SHA1:

2f91da15593d5dfd9c5d071b995eccdbee4beb61

Base64:

7ZuF