Unicode Finder

"앟" U+C55F(HANGUL SYLLABLE AH)

U+C55F
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE AH

Programming

C
\uC55F
JavaScript
\uC55F
Java
\uC55F
Json
\uC55F
Python
\uC55F
Perl
\x{C55F}
PHP
\x{C55F}
Ruby
\u{C55F}
Rust
\u{C55F}
Go
\uC55F

Web

CSS
\00C55F
HtmlDecimal
앟
HtmlHexadecimal
앟
Url
%EC%95%9F

Code

MD5
2df25c92cdd8f22781f430686c8273ff
Sha1
514cab44f9948eeb56a9047f775e400c2a6df810
Base64
7JWf

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uC55F';
console.log(char);  // Output: 앟

Java:

char c = '\uC55F';
System.out.println(c);  // Output: 앟

JSON:

{"text": "\uC55F"}  // Value: 앟

Python:

char = '\uC55F'
print(char)  # Output: 앟

Perl:

my $char = "\x{C55F}";
print $char;  # Output: 앟

PHP:

$char = "\x{C55F}";
echo $char;  // Output: 앟

Ruby:

char = "\u{C55F}"
puts char  # Output: 앟

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#50527;</p>  <!-- Display: 앟 -->

HTML Hexadecimal:

<p>HTML hex: &#xC55F;</p>  <!-- Display: 앟 -->

URL Encoding:

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

Encodings

MD5:

2df25c92cdd8f22781f430686c8273ff

SHA1:

514cab44f9948eeb56a9047f775e400c2a6df810

Base64:

7JWf