Unicode Finder

"쥧" U+C967(HANGUL SYLLABLE JWIC)

U+C967
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE JWIC

Programming

C
\uC967
JavaScript
\uC967
Java
\uC967
Json
\uC967
Python
\uC967
Perl
\x{C967}
PHP
\x{C967}
Ruby
\u{C967}
Rust
\u{C967}
Go
\uC967

Web

CSS
\00C967
HtmlDecimal
쥧
HtmlHexadecimal
쥧
Url
%EC%A5%A7

Code

MD5
c8fa0370a3ed9b0f3f9099bac49255c2
Sha1
c233035d45f756e5d31cf830089d39a973f0d70f
Base64
7KWn

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uC967';
console.log(char);  // Output: 쥧

Java:

char c = '\uC967';
System.out.println(c);  // Output: 쥧

JSON:

{"text": "\uC967"}  // Value: 쥧

Python:

char = '\uC967'
print(char)  # Output: 쥧

Perl:

my $char = "\x{C967}";
print $char;  # Output: 쥧

PHP:

$char = "\x{C967}";
echo $char;  // Output: 쥧

Ruby:

char = "\u{C967}"
puts char  # Output: 쥧

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#51559;</p>  <!-- Display: 쥧 -->

HTML Hexadecimal:

<p>HTML hex: &#xC967;</p>  <!-- Display: 쥧 -->

URL Encoding:

// 쥧 URL encoding
https://unicodefinder.com/search.php?query=%EC%A5%A7

Encodings

MD5:

c8fa0370a3ed9b0f3f9099bac49255c2

SHA1:

c233035d45f756e5d31cf830089d39a973f0d70f

Base64:

7KWn