Unicode Finder

"쑿" U+C47F(HANGUL SYLLABLE SSUH)

U+C47F
ブロック名
Hangul Syllables
名前
HANGUL SYLLABLE SSUH

Programming

C
\uC47F
JavaScript
\uC47F
Java
\uC47F
Json
\uC47F
Python
\uC47F
Perl
\x{C47F}
PHP
\x{C47F}
Ruby
\u{C47F}
Rust
\u{C47F}
Go
\uC47F

Web

CSS
\00C47F
HtmlDecimal
쑿
HtmlHexadecimal
쑿
Url
%EC%91%BF

Code

MD5
212b2c6cab1ebb4188198fb41316290a
Sha1
657afc7430d473cecfd446ebf68fd453504387d1
Base64
7JG/

使用例

Programming Languages

C:

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

JavaScript:

const char = '\uC47F';
console.log(char);  // Output: 쑿

Java:

char c = '\uC47F';
System.out.println(c);  // Output: 쑿

JSON:

{"text": "\uC47F"}  // Value: 쑿

Python:

char = '\uC47F'
print(char)  # Output: 쑿

Perl:

my $char = "\x{C47F}";
print $char;  # Output: 쑿

PHP:

$char = "\x{C47F}";
echo $char;  // Output: 쑿

Ruby:

char = "\u{C47F}"
puts char  # Output: 쑿

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#50303;</p>  <!-- Display: 쑿 -->

HTML Hexadecimal:

<p>HTML hex: &#xC47F;</p>  <!-- Display: 쑿 -->

URL Encoding:

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

Encodings

MD5:

212b2c6cab1ebb4188198fb41316290a

SHA1:

657afc7430d473cecfd446ebf68fd453504387d1

Base64:

7JG/