Unicode Finder

"쎫" U+C3AB(HANGUL SYLLABLE SSYEOLB)

U+C3AB
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE SSYEOLB

Programming

C
\uC3AB
JavaScript
\uC3AB
Java
\uC3AB
Json
\uC3AB
Python
\uC3AB
Perl
\x{C3AB}
PHP
\x{C3AB}
Ruby
\u{C3AB}
Rust
\u{C3AB}
Go
\uC3AB

Web

CSS
\00C3AB
HtmlDecimal
쎫
HtmlHexadecimal
쎫
Url
%EC%8E%AB

Code

MD5
4fb0ed2b656220608c9b2ba966605b1b
Sha1
9b3cf5427fc41b56c03032d5f7cb085ffdb17d79
Base64
7I6r

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uC3AB';
console.log(char);  // Output: 쎫

Java:

char c = '\uC3AB';
System.out.println(c);  // Output: 쎫

JSON:

{"text": "\uC3AB"}  // Value: 쎫

Python:

char = '\uC3AB'
print(char)  # Output: 쎫

Perl:

my $char = "\x{C3AB}";
print $char;  # Output: 쎫

PHP:

$char = "\x{C3AB}";
echo $char;  // Output: 쎫

Ruby:

char = "\u{C3AB}"
puts char  # Output: 쎫

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#50091;</p>  <!-- Display: 쎫 -->

HTML Hexadecimal:

<p>HTML hex: &#xC3AB;</p>  <!-- Display: 쎫 -->

URL Encoding:

// 쎫 URL encoding
https://unicodefinder.com/search.php?query=%EC%8E%AB

Encodings

MD5:

4fb0ed2b656220608c9b2ba966605b1b

SHA1:

9b3cf5427fc41b56c03032d5f7cb085ffdb17d79

Base64:

7I6r