Unicode Finder

"숇" U+C207(HANGUL SYLLABLE SYOLB)

U+C207
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE SYOLB

Programming

C
\uC207
JavaScript
\uC207
Java
\uC207
Json
\uC207
Python
\uC207
Perl
\x{C207}
PHP
\x{C207}
Ruby
\u{C207}
Rust
\u{C207}
Go
\uC207

Web

CSS
\00C207
HtmlDecimal
숇
HtmlHexadecimal
숇
Url
%EC%88%87

Code

MD5
f5a8a5d9eda39b6ffc42a394d18bfa5a
Sha1
78d2ffce9a57b16f14fedddecbf56675ae71c1b8
Base64
7IiH

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uC207';
console.log(char);  // Output: 숇

Java:

char c = '\uC207';
System.out.println(c);  // Output: 숇

JSON:

{"text": "\uC207"}  // Value: 숇

Python:

char = '\uC207'
print(char)  # Output: 숇

Perl:

my $char = "\x{C207}";
print $char;  # Output: 숇

PHP:

$char = "\x{C207}";
echo $char;  // Output: 숇

Ruby:

char = "\u{C207}"
puts char  # Output: 숇

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#49671;</p>  <!-- Display: 숇 -->

HTML Hexadecimal:

<p>HTML hex: &#xC207;</p>  <!-- Display: 숇 -->

URL Encoding:

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

Encodings

MD5:

f5a8a5d9eda39b6ffc42a394d18bfa5a

SHA1:

78d2ffce9a57b16f14fedddecbf56675ae71c1b8

Base64:

7IiH