Unicode Finder

"쌱" U+C331(HANGUL SYLLABLE SSYAG)

U+C331
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE SSYAG

Programming

C
\uC331
JavaScript
\uC331
Java
\uC331
Json
\uC331
Python
\uC331
Perl
\x{C331}
PHP
\x{C331}
Ruby
\u{C331}
Rust
\u{C331}
Go
\uC331

Web

CSS
\00C331
HtmlDecimal
쌱
HtmlHexadecimal
쌱
Url
%EC%8C%B1

Code

MD5
2d91e03a8b33664512d0a9d29cd3de1a
Sha1
f0aa794f5bee632b4913878b8cd58f3eab258f5f
Base64
7Iyx

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uC331';
console.log(char);  // Output: 쌱

Java:

char c = '\uC331';
System.out.println(c);  // Output: 쌱

JSON:

{"text": "\uC331"}  // Value: 쌱

Python:

char = '\uC331'
print(char)  # Output: 쌱

Perl:

my $char = "\x{C331}";
print $char;  # Output: 쌱

PHP:

$char = "\x{C331}";
echo $char;  // Output: 쌱

Ruby:

char = "\u{C331}"
puts char  # Output: 쌱

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#49969;</p>  <!-- Display: 쌱 -->

HTML Hexadecimal:

<p>HTML hex: &#xC331;</p>  <!-- Display: 쌱 -->

URL Encoding:

// 쌱 URL encoding
https://unicodefinder.com/search.php?query=%EC%8C%B1

Encodings

MD5:

2d91e03a8b33664512d0a9d29cd3de1a

SHA1:

f0aa794f5bee632b4913878b8cd58f3eab258f5f

Base64:

7Iyx