Unicode Finder

"럨" U+B7E8(HANGUL SYLLABLE RYAEK)

U+B7E8
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE RYAEK

Programming

C
\uB7E8
JavaScript
\uB7E8
Java
\uB7E8
Json
\uB7E8
Python
\uB7E8
Perl
\x{B7E8}
PHP
\x{B7E8}
Ruby
\u{B7E8}
Rust
\u{B7E8}
Go
\uB7E8

Web

CSS
\00B7E8
HtmlDecimal
럨
HtmlHexadecimal
럨
Url
%EB%9F%A8

Code

MD5
949e515e0d907a6999cc375ed296dc87
Sha1
e3b352f840f7f53563ab72c130b4b3202b1722bc
Base64
65+o

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uB7E8';
console.log(char);  // Output: 럨

Java:

char c = '\uB7E8';
System.out.println(c);  // Output: 럨

JSON:

{"text": "\uB7E8"}  // Value: 럨

Python:

char = '\uB7E8'
print(char)  # Output: 럨

Perl:

my $char = "\x{B7E8}";
print $char;  # Output: 럨

PHP:

$char = "\x{B7E8}";
echo $char;  // Output: 럨

Ruby:

char = "\u{B7E8}"
puts char  # Output: 럨

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#47080;</p>  <!-- Display: 럨 -->

HTML Hexadecimal:

<p>HTML hex: &#xB7E8;</p>  <!-- Display: 럨 -->

URL Encoding:

// 럨 URL encoding
https://unicodefinder.com/search.php?query=%EB%9F%A8

Encodings

MD5:

949e515e0d907a6999cc375ed296dc87

SHA1:

e3b352f840f7f53563ab72c130b4b3202b1722bc

Base64:

65+o