Unicode Finder

"릞" U+B99E(HANGUL SYLLABLE RYILP)

U+B99E
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE RYILP

Programming

C
\uB99E
JavaScript
\uB99E
Java
\uB99E
Json
\uB99E
Python
\uB99E
Perl
\x{B99E}
PHP
\x{B99E}
Ruby
\u{B99E}
Rust
\u{B99E}
Go
\uB99E

Web

CSS
\00B99E
HtmlDecimal
릞
HtmlHexadecimal
릞
Url
%EB%A6%9E

Code

MD5
5f5ab44e9a55a9d9a242c159ee0fee59
Sha1
97e9261d73cb636240a6f2cc29de0a46cfaca1cc
Base64
66ae

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uB99E';
console.log(char);  // Output: 릞

Java:

char c = '\uB99E';
System.out.println(c);  // Output: 릞

JSON:

{"text": "\uB99E"}  // Value: 릞

Python:

char = '\uB99E'
print(char)  # Output: 릞

Perl:

my $char = "\x{B99E}";
print $char;  # Output: 릞

PHP:

$char = "\x{B99E}";
echo $char;  // Output: 릞

Ruby:

char = "\u{B99E}"
puts char  # Output: 릞

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#47518;</p>  <!-- Display: 릞 -->

HTML Hexadecimal:

<p>HTML hex: &#xB99E;</p>  <!-- Display: 릞 -->

URL Encoding:

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

Encodings

MD5:

5f5ab44e9a55a9d9a242c159ee0fee59

SHA1:

97e9261d73cb636240a6f2cc29de0a46cfaca1cc

Base64:

66ae