Unicode Finder

"섷" U+C137(HANGUL SYLLABLE SEOH)

U+C137
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE SEOH

Programming

C
\uC137
JavaScript
\uC137
Java
\uC137
Json
\uC137
Python
\uC137
Perl
\x{C137}
PHP
\x{C137}
Ruby
\u{C137}
Rust
\u{C137}
Go
\uC137

Web

CSS
\00C137
HtmlDecimal
섷
HtmlHexadecimal
섷
Url
%EC%84%B7

Code

MD5
d0777800c6c6186ce8c1e120d8e6101f
Sha1
3a3c6c7a5101dec8b9e536353fa679a78b3a15da
Base64
7IS3

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uC137';
console.log(char);  // Output: 섷

Java:

char c = '\uC137';
System.out.println(c);  // Output: 섷

JSON:

{"text": "\uC137"}  // Value: 섷

Python:

char = '\uC137'
print(char)  # Output: 섷

Perl:

my $char = "\x{C137}";
print $char;  # Output: 섷

PHP:

$char = "\x{C137}";
echo $char;  // Output: 섷

Ruby:

char = "\u{C137}"
puts char  # Output: 섷

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#49463;</p>  <!-- Display: 섷 -->

HTML Hexadecimal:

<p>HTML hex: &#xC137;</p>  <!-- Display: 섷 -->

URL Encoding:

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

Encodings

MD5:

d0777800c6c6186ce8c1e120d8e6101f

SHA1:

3a3c6c7a5101dec8b9e536353fa679a78b3a15da

Base64:

7IS3