Unicode Finder

"솔" U+C194(HANGUL SYLLABLE SOL)

U+C194
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE SOL

Programming

C
\uC194
JavaScript
\uC194
Java
\uC194
Json
\uC194
Python
\uC194
Perl
\x{C194}
PHP
\x{C194}
Ruby
\u{C194}
Rust
\u{C194}
Go
\uC194

Web

CSS
\00C194
HtmlDecimal
솔
HtmlHexadecimal
솔
Url
%EC%86%94

Code

MD5
34f3f05ff5c80184d7718635f32ac91a
Sha1
4aeffb98e3b47298e84be64de32098300bfd338c
Base64
7IaU

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uC194';
console.log(char);  // Output: 솔

Java:

char c = '\uC194';
System.out.println(c);  // Output: 솔

JSON:

{"text": "\uC194"}  // Value: 솔

Python:

char = '\uC194'
print(char)  # Output: 솔

Perl:

my $char = "\x{C194}";
print $char;  # Output: 솔

PHP:

$char = "\x{C194}";
echo $char;  // Output: 솔

Ruby:

char = "\u{C194}"
puts char  # Output: 솔

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#49556;</p>  <!-- Display: 솔 -->

HTML Hexadecimal:

<p>HTML hex: &#xC194;</p>  <!-- Display: 솔 -->

URL Encoding:

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

Encodings

MD5:

34f3f05ff5c80184d7718635f32ac91a

SHA1:

4aeffb98e3b47298e84be64de32098300bfd338c

Base64:

7IaU