Unicode Finder

"롿" U+B87F(HANGUL SYLLABLE RWAD)

U+B87F
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE RWAD

Programming

C
\uB87F
JavaScript
\uB87F
Java
\uB87F
Json
\uB87F
Python
\uB87F
Perl
\x{B87F}
PHP
\x{B87F}
Ruby
\u{B87F}
Rust
\u{B87F}
Go
\uB87F

Web

CSS
\00B87F
HtmlDecimal
롿
HtmlHexadecimal
롿
Url
%EB%A1%BF

Code

MD5
025f9074101921daadd822d56a82c6ae
Sha1
bea77b415d0fd576630b63ce4f376c7a716ab5a3
Base64
66G/

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uB87F';
console.log(char);  // Output: 롿

Java:

char c = '\uB87F';
System.out.println(c);  // Output: 롿

JSON:

{"text": "\uB87F"}  // Value: 롿

Python:

char = '\uB87F'
print(char)  # Output: 롿

Perl:

my $char = "\x{B87F}";
print $char;  # Output: 롿

PHP:

$char = "\x{B87F}";
echo $char;  // Output: 롿

Ruby:

char = "\u{B87F}"
puts char  # Output: 롿

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#47231;</p>  <!-- Display: 롿 -->

HTML Hexadecimal:

<p>HTML hex: &#xB87F;</p>  <!-- Display: 롿 -->

URL Encoding:

// 롿 URL encoding
https://unicodefinder.com/search.php?query=%EB%A1%BF

Encodings

MD5:

025f9074101921daadd822d56a82c6ae

SHA1:

bea77b415d0fd576630b63ce4f376c7a716ab5a3

Base64:

66G/