Unicode Finder

"륬" U+B96C(HANGUL SYLLABLE RYUSS)

U+B96C
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE RYUSS

Programming

C
\uB96C
JavaScript
\uB96C
Java
\uB96C
Json
\uB96C
Python
\uB96C
Perl
\x{B96C}
PHP
\x{B96C}
Ruby
\u{B96C}
Rust
\u{B96C}
Go
\uB96C

Web

CSS
\00B96C
HtmlDecimal
륬
HtmlHexadecimal
륬
Url
%EB%A5%AC

Code

MD5
732cd25e679431287ef5a694d858c5fe
Sha1
99de38b56fcc33dc1c7c116913a599db7e6171f7
Base64
66Ws

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uB96C';
console.log(char);  // Output: 륬

Java:

char c = '\uB96C';
System.out.println(c);  // Output: 륬

JSON:

{"text": "\uB96C"}  // Value: 륬

Python:

char = '\uB96C'
print(char)  # Output: 륬

Perl:

my $char = "\x{B96C}";
print $char;  # Output: 륬

PHP:

$char = "\x{B96C}";
echo $char;  // Output: 륬

Ruby:

char = "\u{B96C}"
puts char  # Output: 륬

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#47468;</p>  <!-- Display: 륬 -->

HTML Hexadecimal:

<p>HTML hex: &#xB96C;</p>  <!-- Display: 륬 -->

URL Encoding:

// 륬 URL encoding
https://unicodefinder.com/search.php?query=%EB%A5%AC

Encodings

MD5:

732cd25e679431287ef5a694d858c5fe

SHA1:

99de38b56fcc33dc1c7c116913a599db7e6171f7

Base64:

66Ws