Unicode Finder

"쎬" U+C3AC(HANGUL SYLLABLE SSYEOLS)

U+C3AC
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE SSYEOLS

Programming

C
\uC3AC
JavaScript
\uC3AC
Java
\uC3AC
Json
\uC3AC
Python
\uC3AC
Perl
\x{C3AC}
PHP
\x{C3AC}
Ruby
\u{C3AC}
Rust
\u{C3AC}
Go
\uC3AC

Web

CSS
\00C3AC
HtmlDecimal
쎬
HtmlHexadecimal
쎬
Url
%EC%8E%AC

Code

MD5
799034715d90c4cc852a4843a8792c9f
Sha1
0ac17846a5d96034134fb21820ce97de75b737ef
Base64
7I6s

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uC3AC';
console.log(char);  // Output: 쎬

Java:

char c = '\uC3AC';
System.out.println(c);  // Output: 쎬

JSON:

{"text": "\uC3AC"}  // Value: 쎬

Python:

char = '\uC3AC'
print(char)  # Output: 쎬

Perl:

my $char = "\x{C3AC}";
print $char;  # Output: 쎬

PHP:

$char = "\x{C3AC}";
echo $char;  // Output: 쎬

Ruby:

char = "\u{C3AC}"
puts char  # Output: 쎬

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#50092;</p>  <!-- Display: 쎬 -->

HTML Hexadecimal:

<p>HTML hex: &#xC3AC;</p>  <!-- Display: 쎬 -->

URL Encoding:

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

Encodings

MD5:

799034715d90c4cc852a4843a8792c9f

SHA1:

0ac17846a5d96034134fb21820ce97de75b737ef

Base64:

7I6s