Unicode Finder

"썙" U+C359(HANGUL SYLLABLE SSYAELT)

U+C359
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE SSYAELT

Programming

C
\uC359
JavaScript
\uC359
Java
\uC359
Json
\uC359
Python
\uC359
Perl
\x{C359}
PHP
\x{C359}
Ruby
\u{C359}
Rust
\u{C359}
Go
\uC359

Web

CSS
\00C359
HtmlDecimal
썙
HtmlHexadecimal
썙
Url
%EC%8D%99

Code

MD5
749a360fee3ca617dd2e92f18105da51
Sha1
41b5f1fdbab36e2d6fdd9aebe1df21eca321130a
Base64
7I2Z

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uC359';
console.log(char);  // Output: 썙

Java:

char c = '\uC359';
System.out.println(c);  // Output: 썙

JSON:

{"text": "\uC359"}  // Value: 썙

Python:

char = '\uC359'
print(char)  # Output: 썙

Perl:

my $char = "\x{C359}";
print $char;  # Output: 썙

PHP:

$char = "\x{C359}";
echo $char;  // Output: 썙

Ruby:

char = "\u{C359}"
puts char  # Output: 썙

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#50009;</p>  <!-- Display: 썙 -->

HTML Hexadecimal:

<p>HTML hex: &#xC359;</p>  <!-- Display: 썙 -->

URL Encoding:

// 썙 URL encoding
https://unicodefinder.com/search.php?query=%EC%8D%99

Encodings

MD5:

749a360fee3ca617dd2e92f18105da51

SHA1:

41b5f1fdbab36e2d6fdd9aebe1df21eca321130a

Base64:

7I2Z