Unicode Finder

"릜" U+B99C(HANGUL SYLLABLE RYILS)

U+B99C
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE RYILS

Programming

C
\uB99C
JavaScript
\uB99C
Java
\uB99C
Json
\uB99C
Python
\uB99C
Perl
\x{B99C}
PHP
\x{B99C}
Ruby
\u{B99C}
Rust
\u{B99C}
Go
\uB99C

Web

CSS
\00B99C
HtmlDecimal
릜
HtmlHexadecimal
릜
Url
%EB%A6%9C

Code

MD5
e9b63b688d80ee58990b94c15ce79a5b
Sha1
dc788c01aa97ee486348126c682c58bc9ac18999
Base64
66ac

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uB99C';
console.log(char);  // Output: 릜

Java:

char c = '\uB99C';
System.out.println(c);  // Output: 릜

JSON:

{"text": "\uB99C"}  // Value: 릜

Python:

char = '\uB99C'
print(char)  # Output: 릜

Perl:

my $char = "\x{B99C}";
print $char;  # Output: 릜

PHP:

$char = "\x{B99C}";
echo $char;  // Output: 릜

Ruby:

char = "\u{B99C}"
puts char  # Output: 릜

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#47516;</p>  <!-- Display: 릜 -->

HTML Hexadecimal:

<p>HTML hex: &#xB99C;</p>  <!-- Display: 릜 -->

URL Encoding:

// 릜 URL encoding
https://unicodefinder.com/search.php?query=%EB%A6%9C

Encodings

MD5:

e9b63b688d80ee58990b94c15ce79a5b

SHA1:

dc788c01aa97ee486348126c682c58bc9ac18999

Base64:

66ac