Unicode Finder

"쉒" U+C252(HANGUL SYLLABLE SWEGG)

U+C252
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE SWEGG

Programming

C
\uC252
JavaScript
\uC252
Java
\uC252
Json
\uC252
Python
\uC252
Perl
\x{C252}
PHP
\x{C252}
Ruby
\u{C252}
Rust
\u{C252}
Go
\uC252

Web

CSS
\00C252
HtmlDecimal
쉒
HtmlHexadecimal
쉒
Url
%EC%89%92

Code

MD5
c98a2c3953043183446e541d2428397c
Sha1
a7aa6582cc78f5c1fd3602aa034c75f7bdb07429
Base64
7ImS

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uC252';
console.log(char);  // Output: 쉒

Java:

char c = '\uC252';
System.out.println(c);  // Output: 쉒

JSON:

{"text": "\uC252"}  // Value: 쉒

Python:

char = '\uC252'
print(char)  # Output: 쉒

Perl:

my $char = "\x{C252}";
print $char;  # Output: 쉒

PHP:

$char = "\x{C252}";
echo $char;  // Output: 쉒

Ruby:

char = "\u{C252}"
puts char  # Output: 쉒

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#49746;</p>  <!-- Display: 쉒 -->

HTML Hexadecimal:

<p>HTML hex: &#xC252;</p>  <!-- Display: 쉒 -->

URL Encoding:

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

Encodings

MD5:

c98a2c3953043183446e541d2428397c

SHA1:

a7aa6582cc78f5c1fd3602aa034c75f7bdb07429

Base64:

7ImS