Unicode Finder

"줰" U+C930(HANGUL SYLLABLE JWEOK)

U+C930
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE JWEOK

Programming

C
\uC930
JavaScript
\uC930
Java
\uC930
Json
\uC930
Python
\uC930
Perl
\x{C930}
PHP
\x{C930}
Ruby
\u{C930}
Rust
\u{C930}
Go
\uC930

Web

CSS
\00C930
HtmlDecimal
줰
HtmlHexadecimal
줰
Url
%EC%A4%B0

Code

MD5
d4e07c59cde7edf42721c06d59a137c3
Sha1
13a0f32853944ec72511d07b60f1605a00ef695b
Base64
7KSw

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uC930';
console.log(char);  // Output: 줰

Java:

char c = '\uC930';
System.out.println(c);  // Output: 줰

JSON:

{"text": "\uC930"}  // Value: 줰

Python:

char = '\uC930'
print(char)  # Output: 줰

Perl:

my $char = "\x{C930}";
print $char;  # Output: 줰

PHP:

$char = "\x{C930}";
echo $char;  // Output: 줰

Ruby:

char = "\u{C930}"
puts char  # Output: 줰

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#51504;</p>  <!-- Display: 줰 -->

HTML Hexadecimal:

<p>HTML hex: &#xC930;</p>  <!-- Display: 줰 -->

URL Encoding:

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

Encodings

MD5:

d4e07c59cde7edf42721c06d59a137c3

SHA1:

13a0f32853944ec72511d07b60f1605a00ef695b

Base64:

7KSw