Unicode Finder

"섄" U+C104(HANGUL SYLLABLE SYAEN)

U+C104
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE SYAEN

Programming

C
\uC104
JavaScript
\uC104
Java
\uC104
Json
\uC104
Python
\uC104
Perl
\x{C104}
PHP
\x{C104}
Ruby
\u{C104}
Rust
\u{C104}
Go
\uC104

Web

CSS
\00C104
HtmlDecimal
섄
HtmlHexadecimal
섄
Url
%EC%84%84

Code

MD5
b88fe47b532d35fb4f88b0a844e9d0e7
Sha1
60c4c6de193fd7535acda5a17f4b531363971681
Base64
7ISE

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uC104';
console.log(char);  // Output: 섄

Java:

char c = '\uC104';
System.out.println(c);  // Output: 섄

JSON:

{"text": "\uC104"}  // Value: 섄

Python:

char = '\uC104'
print(char)  # Output: 섄

Perl:

my $char = "\x{C104}";
print $char;  # Output: 섄

PHP:

$char = "\x{C104}";
echo $char;  // Output: 섄

Ruby:

char = "\u{C104}"
puts char  # Output: 섄

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#49412;</p>  <!-- Display: 섄 -->

HTML Hexadecimal:

<p>HTML hex: &#xC104;</p>  <!-- Display: 섄 -->

URL Encoding:

// 섄 URL encoding
https://unicodefinder.com/search.php?query=%EC%84%84

Encodings

MD5:

b88fe47b532d35fb4f88b0a844e9d0e7

SHA1:

60c4c6de193fd7535acda5a17f4b531363971681

Base64:

7ISE