Unicode Finder

"억" U+C5B5(HANGUL SYLLABLE EOG)

U+C5B5
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE EOG

Programming

C
\uC5B5
JavaScript
\uC5B5
Java
\uC5B5
Json
\uC5B5
Python
\uC5B5
Perl
\x{C5B5}
PHP
\x{C5B5}
Ruby
\u{C5B5}
Rust
\u{C5B5}
Go
\uC5B5

Web

CSS
\00C5B5
HtmlDecimal
억
HtmlHexadecimal
억
Url
%EC%96%B5

Code

MD5
8078d83c4336a5bb30e11581490406d0
Sha1
ed3c743d9cc3c901295dd7d90a130afac52f4e4f
Base64
7Ja1

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uC5B5';
console.log(char);  // Output: 억

Java:

char c = '\uC5B5';
System.out.println(c);  // Output: 억

JSON:

{"text": "\uC5B5"}  // Value: 억

Python:

char = '\uC5B5'
print(char)  # Output: 억

Perl:

my $char = "\x{C5B5}";
print $char;  # Output: 억

PHP:

$char = "\x{C5B5}";
echo $char;  // Output: 억

Ruby:

char = "\u{C5B5}"
puts char  # Output: 억

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#50613;</p>  <!-- Display: 억 -->

HTML Hexadecimal:

<p>HTML hex: &#xC5B5;</p>  <!-- Display: 억 -->

URL Encoding:

// 억 URL encoding
https://unicodefinder.com/search.php?query=%EC%96%B5

Encodings

MD5:

8078d83c4336a5bb30e11581490406d0

SHA1:

ed3c743d9cc3c901295dd7d90a130afac52f4e4f

Base64:

7Ja1