Unicode Finder

"줨" U+C928(HANGUL SYLLABLE JWEOM)

U+C928
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE JWEOM

Programming

C
\uC928
JavaScript
\uC928
Java
\uC928
Json
\uC928
Python
\uC928
Perl
\x{C928}
PHP
\x{C928}
Ruby
\u{C928}
Rust
\u{C928}
Go
\uC928

Web

CSS
\00C928
HtmlDecimal
줨
HtmlHexadecimal
줨
Url
%EC%A4%A8

Code

MD5
f5ffaa09ac09818a101ef92c77c1adf9
Sha1
a2757dd9897fe7e849ad7e389876bc5e0b2479cf
Base64
7KSo

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uC928';
console.log(char);  // Output: 줨

Java:

char c = '\uC928';
System.out.println(c);  // Output: 줨

JSON:

{"text": "\uC928"}  // Value: 줨

Python:

char = '\uC928'
print(char)  # Output: 줨

Perl:

my $char = "\x{C928}";
print $char;  # Output: 줨

PHP:

$char = "\x{C928}";
echo $char;  // Output: 줨

Ruby:

char = "\u{C928}"
puts char  # Output: 줨

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#51496;</p>  <!-- Display: 줨 -->

HTML Hexadecimal:

<p>HTML hex: &#xC928;</p>  <!-- Display: 줨 -->

URL Encoding:

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

Encodings

MD5:

f5ffaa09ac09818a101ef92c77c1adf9

SHA1:

a2757dd9897fe7e849ad7e389876bc5e0b2479cf

Base64:

7KSo