Unicode Finder

"쉵" U+C275(HANGUL SYLLABLE SWILG)

U+C275
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE SWILG

Programming

C
\uC275
JavaScript
\uC275
Java
\uC275
Json
\uC275
Python
\uC275
Perl
\x{C275}
PHP
\x{C275}
Ruby
\u{C275}
Rust
\u{C275}
Go
\uC275

Web

CSS
\00C275
HtmlDecimal
쉵
HtmlHexadecimal
쉵
Url
%EC%89%B5

Code

MD5
85733695f79123524210ed96744105bc
Sha1
2578066207e877a3fb7499a1178fae4e90ae05a7
Base64
7Im1

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uC275';
console.log(char);  // Output: 쉵

Java:

char c = '\uC275';
System.out.println(c);  // Output: 쉵

JSON:

{"text": "\uC275"}  // Value: 쉵

Python:

char = '\uC275'
print(char)  # Output: 쉵

Perl:

my $char = "\x{C275}";
print $char;  # Output: 쉵

PHP:

$char = "\x{C275}";
echo $char;  // Output: 쉵

Ruby:

char = "\u{C275}"
puts char  # Output: 쉵

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#49781;</p>  <!-- Display: 쉵 -->

HTML Hexadecimal:

<p>HTML hex: &#xC275;</p>  <!-- Display: 쉵 -->

URL Encoding:

// 쉵 URL encoding
https://unicodefinder.com/search.php?query=%EC%89%B5

Encodings

MD5:

85733695f79123524210ed96744105bc

SHA1:

2578066207e877a3fb7499a1178fae4e90ae05a7

Base64:

7Im1