Unicode Finder

"쒫" U+C4AB(HANGUL SYLLABLE SSWELH)

U+C4AB
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE SSWELH

Programming

C
\uC4AB
JavaScript
\uC4AB
Java
\uC4AB
Json
\uC4AB
Python
\uC4AB
Perl
\x{C4AB}
PHP
\x{C4AB}
Ruby
\u{C4AB}
Rust
\u{C4AB}
Go
\uC4AB

Web

CSS
\00C4AB
HtmlDecimal
쒫
HtmlHexadecimal
쒫
Url
%EC%92%AB

Code

MD5
0db696339655e7b51383c2d36b8f97c5
Sha1
a01e111bd9ba02944c6db84b004017a103158b00
Base64
7JKr

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uC4AB';
console.log(char);  // Output: 쒫

Java:

char c = '\uC4AB';
System.out.println(c);  // Output: 쒫

JSON:

{"text": "\uC4AB"}  // Value: 쒫

Python:

char = '\uC4AB'
print(char)  # Output: 쒫

Perl:

my $char = "\x{C4AB}";
print $char;  # Output: 쒫

PHP:

$char = "\x{C4AB}";
echo $char;  // Output: 쒫

Ruby:

char = "\u{C4AB}"
puts char  # Output: 쒫

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#50347;</p>  <!-- Display: 쒫 -->

HTML Hexadecimal:

<p>HTML hex: &#xC4AB;</p>  <!-- Display: 쒫 -->

URL Encoding:

// 쒫 URL encoding
https://unicodefinder.com/search.php?query=%EC%92%AB

Encodings

MD5:

0db696339655e7b51383c2d36b8f97c5

SHA1:

a01e111bd9ba02944c6db84b004017a103158b00

Base64:

7JKr