Unicode Finder

"줠" U+C920(HANGUL SYLLABLE JWEOL)

U+C920
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE JWEOL

Programming

C
\uC920
JavaScript
\uC920
Java
\uC920
Json
\uC920
Python
\uC920
Perl
\x{C920}
PHP
\x{C920}
Ruby
\u{C920}
Rust
\u{C920}
Go
\uC920

Web

CSS
\00C920
HtmlDecimal
줠
HtmlHexadecimal
줠
Url
%EC%A4%A0

Code

MD5
82078ad0256fab67918e4a8c061e50ae
Sha1
9ec3190466756acd90d8eec985c7b812af2d1b6b
Base64
7KSg

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uC920';
console.log(char);  // Output: 줠

Java:

char c = '\uC920';
System.out.println(c);  // Output: 줠

JSON:

{"text": "\uC920"}  // Value: 줠

Python:

char = '\uC920'
print(char)  # Output: 줠

Perl:

my $char = "\x{C920}";
print $char;  # Output: 줠

PHP:

$char = "\x{C920}";
echo $char;  // Output: 줠

Ruby:

char = "\u{C920}"
puts char  # Output: 줠

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#51488;</p>  <!-- Display: 줠 -->

HTML Hexadecimal:

<p>HTML hex: &#xC920;</p>  <!-- Display: 줠 -->

URL Encoding:

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

Encodings

MD5:

82078ad0256fab67918e4a8c061e50ae

SHA1:

9ec3190466756acd90d8eec985c7b812af2d1b6b

Base64:

7KSg