Unicode Finder

"즋" U+C98B(HANGUL SYLLABLE JEUGS)

U+C98B
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE JEUGS

Programming

C
\uC98B
JavaScript
\uC98B
Java
\uC98B
Json
\uC98B
Python
\uC98B
Perl
\x{C98B}
PHP
\x{C98B}
Ruby
\u{C98B}
Rust
\u{C98B}
Go
\uC98B

Web

CSS
\00C98B
HtmlDecimal
즋
HtmlHexadecimal
즋
Url
%EC%A6%8B

Code

MD5
e6a197881f73c8ecc86fcf87b411259c
Sha1
05c6d6c481ba88f05be9acc961d066218a493082
Base64
7KaL

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uC98B';
console.log(char);  // Output: 즋

Java:

char c = '\uC98B';
System.out.println(c);  // Output: 즋

JSON:

{"text": "\uC98B"}  // Value: 즋

Python:

char = '\uC98B'
print(char)  # Output: 즋

Perl:

my $char = "\x{C98B}";
print $char;  # Output: 즋

PHP:

$char = "\x{C98B}";
echo $char;  // Output: 즋

Ruby:

char = "\u{C98B}"
puts char  # Output: 즋

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#51595;</p>  <!-- Display: 즋 -->

HTML Hexadecimal:

<p>HTML hex: &#xC98B;</p>  <!-- Display: 즋 -->

URL Encoding:

// 즋 URL encoding
https://unicodefinder.com/search.php?query=%EC%A6%8B

Encodings

MD5:

e6a197881f73c8ecc86fcf87b411259c

SHA1:

05c6d6c481ba88f05be9acc961d066218a493082

Base64:

7KaL