Unicode Finder

"줡" U+C921(HANGUL SYLLABLE JWEOLG)

U+C921
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE JWEOLG

Programming

C
\uC921
JavaScript
\uC921
Java
\uC921
Json
\uC921
Python
\uC921
Perl
\x{C921}
PHP
\x{C921}
Ruby
\u{C921}
Rust
\u{C921}
Go
\uC921

Web

CSS
\00C921
HtmlDecimal
줡
HtmlHexadecimal
줡
Url
%EC%A4%A1

Code

MD5
50d00a1eb6265e7a7b7fd51583ff8b8a
Sha1
9e645d0fb1618c217aa4b9042e4c83a3a8839def
Base64
7KSh

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uC921';
console.log(char);  // Output: 줡

Java:

char c = '\uC921';
System.out.println(c);  // Output: 줡

JSON:

{"text": "\uC921"}  // Value: 줡

Python:

char = '\uC921'
print(char)  # Output: 줡

Perl:

my $char = "\x{C921}";
print $char;  # Output: 줡

PHP:

$char = "\x{C921}";
echo $char;  // Output: 줡

Ruby:

char = "\u{C921}"
puts char  # Output: 줡

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#51489;</p>  <!-- Display: 줡 -->

HTML Hexadecimal:

<p>HTML hex: &#xC921;</p>  <!-- Display: 줡 -->

URL Encoding:

// 줡 URL encoding
https://unicodefinder.com/search.php?query=%EC%A4%A1

Encodings

MD5:

50d00a1eb6265e7a7b7fd51583ff8b8a

SHA1:

9e645d0fb1618c217aa4b9042e4c83a3a8839def

Base64:

7KSh