Unicode Finder

"릌" U+B98C(HANGUL SYLLABLE REUK)

U+B98C
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE REUK

Programming

C
\uB98C
JavaScript
\uB98C
Java
\uB98C
Json
\uB98C
Python
\uB98C
Perl
\x{B98C}
PHP
\x{B98C}
Ruby
\u{B98C}
Rust
\u{B98C}
Go
\uB98C

Web

CSS
\00B98C
HtmlDecimal
릌
HtmlHexadecimal
릌
Url
%EB%A6%8C

Code

MD5
ed5493f2088fa6c564ef651063ca026f
Sha1
dd45c38ebbd17aa1937a7b00ffd1c158c9806f3a
Base64
66aM

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uB98C';
console.log(char);  // Output: 릌

Java:

char c = '\uB98C';
System.out.println(c);  // Output: 릌

JSON:

{"text": "\uB98C"}  // Value: 릌

Python:

char = '\uB98C'
print(char)  # Output: 릌

Perl:

my $char = "\x{B98C}";
print $char;  # Output: 릌

PHP:

$char = "\x{B98C}";
echo $char;  // Output: 릌

Ruby:

char = "\u{B98C}"
puts char  # Output: 릌

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#47500;</p>  <!-- Display: 릌 -->

HTML Hexadecimal:

<p>HTML hex: &#xB98C;</p>  <!-- Display: 릌 -->

URL Encoding:

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

Encodings

MD5:

ed5493f2088fa6c564ef651063ca026f

SHA1:

dd45c38ebbd17aa1937a7b00ffd1c158c9806f3a

Base64:

66aM