Unicode Finder

"씈" U+C508(HANGUL SYLLABLE SSEUK)

U+C508
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE SSEUK

Programming

C
\uC508
JavaScript
\uC508
Java
\uC508
Json
\uC508
Python
\uC508
Perl
\x{C508}
PHP
\x{C508}
Ruby
\u{C508}
Rust
\u{C508}
Go
\uC508

Web

CSS
\00C508
HtmlDecimal
씈
HtmlHexadecimal
씈
Url
%EC%94%88

Code

MD5
d54e7849a55f73b65d1eb6a9ea76488c
Sha1
6c0d136e7463e6b7da7e1c515b54d1e4cff6133d
Base64
7JSI

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uC508';
console.log(char);  // Output: 씈

Java:

char c = '\uC508';
System.out.println(c);  // Output: 씈

JSON:

{"text": "\uC508"}  // Value: 씈

Python:

char = '\uC508'
print(char)  # Output: 씈

Perl:

my $char = "\x{C508}";
print $char;  # Output: 씈

PHP:

$char = "\x{C508}";
echo $char;  // Output: 씈

Ruby:

char = "\u{C508}"
puts char  # Output: 씈

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#50440;</p>  <!-- Display: 씈 -->

HTML Hexadecimal:

<p>HTML hex: &#xC508;</p>  <!-- Display: 씈 -->

URL Encoding:

// 씈 URL encoding
https://unicodefinder.com/search.php?query=%EC%94%88

Encodings

MD5:

d54e7849a55f73b65d1eb6a9ea76488c

SHA1:

6c0d136e7463e6b7da7e1c515b54d1e4cff6133d

Base64:

7JSI