Unicode Finder

"슫" U+C2AB(HANGUL SYLLABLE SEUD)

U+C2AB
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE SEUD

Programming

C
\uC2AB
JavaScript
\uC2AB
Java
\uC2AB
Json
\uC2AB
Python
\uC2AB
Perl
\x{C2AB}
PHP
\x{C2AB}
Ruby
\u{C2AB}
Rust
\u{C2AB}
Go
\uC2AB

Web

CSS
\00C2AB
HtmlDecimal
슫
HtmlHexadecimal
슫
Url
%EC%8A%AB

Code

MD5
a4cc6cb32cf1ed181c5d7db4a2b64b99
Sha1
09dcb333b42c54196aeb3e312d8a6ac949867e1d
Base64
7Iqr

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uC2AB';
console.log(char);  // Output: 슫

Java:

char c = '\uC2AB';
System.out.println(c);  // Output: 슫

JSON:

{"text": "\uC2AB"}  // Value: 슫

Python:

char = '\uC2AB'
print(char)  # Output: 슫

Perl:

my $char = "\x{C2AB}";
print $char;  # Output: 슫

PHP:

$char = "\x{C2AB}";
echo $char;  // Output: 슫

Ruby:

char = "\u{C2AB}"
puts char  # Output: 슫

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#49835;</p>  <!-- Display: 슫 -->

HTML Hexadecimal:

<p>HTML hex: &#xC2AB;</p>  <!-- Display: 슫 -->

URL Encoding:

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

Encodings

MD5:

a4cc6cb32cf1ed181c5d7db4a2b64b99

SHA1:

09dcb333b42c54196aeb3e312d8a6ac949867e1d

Base64:

7Iqr