Unicode Finder

"앰" U+C570(HANGUL SYLLABLE AEM)

U+C570
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE AEM

Programming

C
\uC570
JavaScript
\uC570
Java
\uC570
Json
\uC570
Python
\uC570
Perl
\x{C570}
PHP
\x{C570}
Ruby
\u{C570}
Rust
\u{C570}
Go
\uC570

Web

CSS
\00C570
HtmlDecimal
앰
HtmlHexadecimal
앰
Url
%EC%95%B0

Code

MD5
635de6af2c379dd2fb560d98a9c50a00
Sha1
23dea5de462a5f15148fe9ebddab3d2f412f2941
Base64
7JWw

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uC570';
console.log(char);  // Output: 앰

Java:

char c = '\uC570';
System.out.println(c);  // Output: 앰

JSON:

{"text": "\uC570"}  // Value: 앰

Python:

char = '\uC570'
print(char)  # Output: 앰

Perl:

my $char = "\x{C570}";
print $char;  # Output: 앰

PHP:

$char = "\x{C570}";
echo $char;  // Output: 앰

Ruby:

char = "\u{C570}"
puts char  # Output: 앰

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#50544;</p>  <!-- Display: 앰 -->

HTML Hexadecimal:

<p>HTML hex: &#xC570;</p>  <!-- Display: 앰 -->

URL Encoding:

// 앰 URL encoding
https://unicodefinder.com/search.php?query=%EC%95%B0

Encodings

MD5:

635de6af2c379dd2fb560d98a9c50a00

SHA1:

23dea5de462a5f15148fe9ebddab3d2f412f2941

Base64:

7JWw