Unicode Finder

"쑜" U+C45C(HANGUL SYLLABLE SSYOSS)

U+C45C
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE SSYOSS

Programming

C
\uC45C
JavaScript
\uC45C
Java
\uC45C
Json
\uC45C
Python
\uC45C
Perl
\x{C45C}
PHP
\x{C45C}
Ruby
\u{C45C}
Rust
\u{C45C}
Go
\uC45C

Web

CSS
\00C45C
HtmlDecimal
쑜
HtmlHexadecimal
쑜
Url
%EC%91%9C

Code

MD5
7eea9bcd733320a8db29319bb5587384
Sha1
6f1d74fe6fd951eb161cceb336786b68337e3c1d
Base64
7JGc

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uC45C';
console.log(char);  // Output: 쑜

Java:

char c = '\uC45C';
System.out.println(c);  // Output: 쑜

JSON:

{"text": "\uC45C"}  // Value: 쑜

Python:

char = '\uC45C'
print(char)  # Output: 쑜

Perl:

my $char = "\x{C45C}";
print $char;  # Output: 쑜

PHP:

$char = "\x{C45C}";
echo $char;  // Output: 쑜

Ruby:

char = "\u{C45C}"
puts char  # Output: 쑜

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#50268;</p>  <!-- Display: 쑜 -->

HTML Hexadecimal:

<p>HTML hex: &#xC45C;</p>  <!-- Display: 쑜 -->

URL Encoding:

// 쑜 URL encoding
https://unicodefinder.com/search.php?query=%EC%91%9C

Encodings

MD5:

7eea9bcd733320a8db29319bb5587384

SHA1:

6f1d74fe6fd951eb161cceb336786b68337e3c1d

Base64:

7JGc