Unicode Finder

"줙" U+C919(HANGUL SYLLABLE JWEOG)

U+C919
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE JWEOG

Programming

C
\uC919
JavaScript
\uC919
Java
\uC919
Json
\uC919
Python
\uC919
Perl
\x{C919}
PHP
\x{C919}
Ruby
\u{C919}
Rust
\u{C919}
Go
\uC919

Web

CSS
\00C919
HtmlDecimal
줙
HtmlHexadecimal
줙
Url
%EC%A4%99

Code

MD5
89a320fc00dffbdfb0ced9e08bd1846c
Sha1
d90feb574fd7228206d7fca1c98806ed85cc3acb
Base64
7KSZ

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uC919';
console.log(char);  // Output: 줙

Java:

char c = '\uC919';
System.out.println(c);  // Output: 줙

JSON:

{"text": "\uC919"}  // Value: 줙

Python:

char = '\uC919'
print(char)  # Output: 줙

Perl:

my $char = "\x{C919}";
print $char;  # Output: 줙

PHP:

$char = "\x{C919}";
echo $char;  // Output: 줙

Ruby:

char = "\u{C919}"
puts char  # Output: 줙

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#51481;</p>  <!-- Display: 줙 -->

HTML Hexadecimal:

<p>HTML hex: &#xC919;</p>  <!-- Display: 줙 -->

URL Encoding:

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

Encodings

MD5:

89a320fc00dffbdfb0ced9e08bd1846c

SHA1:

d90feb574fd7228206d7fca1c98806ed85cc3acb

Base64:

7KSZ