Unicode Finder

"삭" U+C0AD(HANGUL SYLLABLE SAG)

U+C0AD
區塊名稱
Hangul Syllables
名稱
HANGUL SYLLABLE SAG

Programming

C
\uC0AD
JavaScript
\uC0AD
Java
\uC0AD
Json
\uC0AD
Python
\uC0AD
Perl
\x{C0AD}
PHP
\x{C0AD}
Ruby
\u{C0AD}
Rust
\u{C0AD}
Go
\uC0AD

Web

CSS
\00C0AD
HtmlDecimal
삭
HtmlHexadecimal
삭
Url
%EC%82%AD

Code

MD5
e8c072ee5705c1a20196437808e1ba10
Sha1
f17c048d0671cdcf7779b1fd9602ac07d98c2327
Base64
7IKt

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\uC0AD';
console.log(char);  // Output: 삭

Java:

char c = '\uC0AD';
System.out.println(c);  // Output: 삭

JSON:

{"text": "\uC0AD"}  // Value: 삭

Python:

char = '\uC0AD'
print(char)  # Output: 삭

Perl:

my $char = "\x{C0AD}";
print $char;  # Output: 삭

PHP:

$char = "\x{C0AD}";
echo $char;  // Output: 삭

Ruby:

char = "\u{C0AD}"
puts char  # Output: 삭

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#49325;</p>  <!-- Display: 삭 -->

HTML Hexadecimal:

<p>HTML hex: &#xC0AD;</p>  <!-- Display: 삭 -->

URL Encoding:

// 삭 URL encoding
https://unicodefinder.com/search.php?query=%EC%82%AD

Encodings

MD5:

e8c072ee5705c1a20196437808e1ba10

SHA1:

f17c048d0671cdcf7779b1fd9602ac07d98c2327

Base64:

7IKt