Unicode Finder

"앜" U+C55C(HANGUL SYLLABLE AK)

U+C55C
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE AK

Programming

C
\uC55C
JavaScript
\uC55C
Java
\uC55C
Json
\uC55C
Python
\uC55C
Perl
\x{C55C}
PHP
\x{C55C}
Ruby
\u{C55C}
Rust
\u{C55C}
Go
\uC55C

Web

CSS
\00C55C
HtmlDecimal
앜
HtmlHexadecimal
앜
Url
%EC%95%9C

Code

MD5
a6fc99986224c69e91f47eed32dda0ee
Sha1
2170bfdfbdcb2de217386c3c4118f90fcbbf0477
Base64
7JWc

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uC55C';
console.log(char);  // Output: 앜

Java:

char c = '\uC55C';
System.out.println(c);  // Output: 앜

JSON:

{"text": "\uC55C"}  // Value: 앜

Python:

char = '\uC55C'
print(char)  # Output: 앜

Perl:

my $char = "\x{C55C}";
print $char;  # Output: 앜

PHP:

$char = "\x{C55C}";
echo $char;  // Output: 앜

Ruby:

char = "\u{C55C}"
puts char  # Output: 앜

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#50524;</p>  <!-- Display: 앜 -->

HTML Hexadecimal:

<p>HTML hex: &#xC55C;</p>  <!-- Display: 앜 -->

URL Encoding:

// 앜 URL encoding
https://unicodefinder.com/search.php?query=%EC%95%9C

Encodings

MD5:

a6fc99986224c69e91f47eed32dda0ee

SHA1:

2170bfdfbdcb2de217386c3c4118f90fcbbf0477

Base64:

7JWc