Unicode Finder

"쐾" U+C43E(HANGUL SYLLABLE SSOEBS)

U+C43E
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE SSOEBS

Programming

C
\uC43E
JavaScript
\uC43E
Java
\uC43E
Json
\uC43E
Python
\uC43E
Perl
\x{C43E}
PHP
\x{C43E}
Ruby
\u{C43E}
Rust
\u{C43E}
Go
\uC43E

Web

CSS
\00C43E
HtmlDecimal
쐾
HtmlHexadecimal
쐾
Url
%EC%90%BE

Code

MD5
b4efb07bc85a959d5ae8bdd9bc0f189a
Sha1
543c7eeefe58ace9b20aa203bc545a5a07f43290
Base64
7JC+

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uC43E';
console.log(char);  // Output: 쐾

Java:

char c = '\uC43E';
System.out.println(c);  // Output: 쐾

JSON:

{"text": "\uC43E"}  // Value: 쐾

Python:

char = '\uC43E'
print(char)  # Output: 쐾

Perl:

my $char = "\x{C43E}";
print $char;  # Output: 쐾

PHP:

$char = "\x{C43E}";
echo $char;  // Output: 쐾

Ruby:

char = "\u{C43E}"
puts char  # Output: 쐾

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#50238;</p>  <!-- Display: 쐾 -->

HTML Hexadecimal:

<p>HTML hex: &#xC43E;</p>  <!-- Display: 쐾 -->

URL Encoding:

// 쐾 URL encoding
https://unicodefinder.com/search.php?query=%EC%90%BE

Encodings

MD5:

b4efb07bc85a959d5ae8bdd9bc0f189a

SHA1:

543c7eeefe58ace9b20aa203bc545a5a07f43290

Base64:

7JC+