Unicode Finder

"슥" U+C2A5(HANGUL SYLLABLE SEUG)

U+C2A5
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE SEUG

Programming

C
\uC2A5
JavaScript
\uC2A5
Java
\uC2A5
Json
\uC2A5
Python
\uC2A5
Perl
\x{C2A5}
PHP
\x{C2A5}
Ruby
\u{C2A5}
Rust
\u{C2A5}
Go
\uC2A5

Web

CSS
\00C2A5
HtmlDecimal
슥
HtmlHexadecimal
슥
Url
%EC%8A%A5

Code

MD5
8487b3ce97c2c7d24d676cd2a6e69ee9
Sha1
3edf021051cdb40470c99bf1ce1dda09b0c8decf
Base64
7Iql

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uC2A5';
console.log(char);  // Output: 슥

Java:

char c = '\uC2A5';
System.out.println(c);  // Output: 슥

JSON:

{"text": "\uC2A5"}  // Value: 슥

Python:

char = '\uC2A5'
print(char)  # Output: 슥

Perl:

my $char = "\x{C2A5}";
print $char;  # Output: 슥

PHP:

$char = "\x{C2A5}";
echo $char;  // Output: 슥

Ruby:

char = "\u{C2A5}"
puts char  # Output: 슥

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#49829;</p>  <!-- Display: 슥 -->

HTML Hexadecimal:

<p>HTML hex: &#xC2A5;</p>  <!-- Display: 슥 -->

URL Encoding:

// 슥 URL encoding
https://unicodefinder.com/search.php?query=%EC%8A%A5

Encodings

MD5:

8487b3ce97c2c7d24d676cd2a6e69ee9

SHA1:

3edf021051cdb40470c99bf1ce1dda09b0c8decf

Base64:

7Iql