Unicode Finder

"쉌" U+C24C(HANGUL SYLLABLE SWEOK)

U+C24C
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE SWEOK

Programming

C
\uC24C
JavaScript
\uC24C
Java
\uC24C
Json
\uC24C
Python
\uC24C
Perl
\x{C24C}
PHP
\x{C24C}
Ruby
\u{C24C}
Rust
\u{C24C}
Go
\uC24C

Web

CSS
\00C24C
HtmlDecimal
쉌
HtmlHexadecimal
쉌
Url
%EC%89%8C

Code

MD5
6c319b70f1ac88395ae658070e58a9da
Sha1
75198aec4b933746ae8a3bae96da133c1c5750b7
Base64
7ImM

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uC24C';
console.log(char);  // Output: 쉌

Java:

char c = '\uC24C';
System.out.println(c);  // Output: 쉌

JSON:

{"text": "\uC24C"}  // Value: 쉌

Python:

char = '\uC24C'
print(char)  # Output: 쉌

Perl:

my $char = "\x{C24C}";
print $char;  # Output: 쉌

PHP:

$char = "\x{C24C}";
echo $char;  // Output: 쉌

Ruby:

char = "\u{C24C}"
puts char  # Output: 쉌

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#49740;</p>  <!-- Display: 쉌 -->

HTML Hexadecimal:

<p>HTML hex: &#xC24C;</p>  <!-- Display: 쉌 -->

URL Encoding:

// 쉌 URL encoding
https://unicodefinder.com/search.php?query=%EC%89%8C

Encodings

MD5:

6c319b70f1ac88395ae658070e58a9da

SHA1:

75198aec4b933746ae8a3bae96da133c1c5750b7

Base64:

7ImM