Unicode Finder

"쑒" U+C452(HANGUL SYLLABLE SSYOLM)

U+C452
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE SSYOLM

Programming

C
\uC452
JavaScript
\uC452
Java
\uC452
Json
\uC452
Python
\uC452
Perl
\x{C452}
PHP
\x{C452}
Ruby
\u{C452}
Rust
\u{C452}
Go
\uC452

Web

CSS
\00C452
HtmlDecimal
쑒
HtmlHexadecimal
쑒
Url
%EC%91%92

Code

MD5
f9c437216842bf50946c2c3b025b5a3c
Sha1
e4743fda90a2dbe5179b2905d5a7566cc6f85cf5
Base64
7JGS

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uC452';
console.log(char);  // Output: 쑒

Java:

char c = '\uC452';
System.out.println(c);  // Output: 쑒

JSON:

{"text": "\uC452"}  // Value: 쑒

Python:

char = '\uC452'
print(char)  # Output: 쑒

Perl:

my $char = "\x{C452}";
print $char;  # Output: 쑒

PHP:

$char = "\x{C452}";
echo $char;  // Output: 쑒

Ruby:

char = "\u{C452}"
puts char  # Output: 쑒

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#50258;</p>  <!-- Display: 쑒 -->

HTML Hexadecimal:

<p>HTML hex: &#xC452;</p>  <!-- Display: 쑒 -->

URL Encoding:

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

Encodings

MD5:

f9c437216842bf50946c2c3b025b5a3c

SHA1:

e4743fda90a2dbe5179b2905d5a7566cc6f85cf5

Base64:

7JGS