Unicode Finder

"럾" U+B7FE(HANGUL SYLLABLE REOBS)

U+B7FE
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE REOBS

Programming

C
\uB7FE
JavaScript
\uB7FE
Java
\uB7FE
Json
\uB7FE
Python
\uB7FE
Perl
\x{B7FE}
PHP
\x{B7FE}
Ruby
\u{B7FE}
Rust
\u{B7FE}
Go
\uB7FE

Web

CSS
\00B7FE
HtmlDecimal
럾
HtmlHexadecimal
럾
Url
%EB%9F%BE

Code

MD5
6f910705c8acd766137f48339a362a92
Sha1
f4bdd91e5d3df21077d411f7abb3de6a06bb0f1e
Base64
65++

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uB7FE';
console.log(char);  // Output: 럾

Java:

char c = '\uB7FE';
System.out.println(c);  // Output: 럾

JSON:

{"text": "\uB7FE"}  // Value: 럾

Python:

char = '\uB7FE'
print(char)  # Output: 럾

Perl:

my $char = "\x{B7FE}";
print $char;  # Output: 럾

PHP:

$char = "\x{B7FE}";
echo $char;  // Output: 럾

Ruby:

char = "\u{B7FE}"
puts char  # Output: 럾

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#47102;</p>  <!-- Display: 럾 -->

HTML Hexadecimal:

<p>HTML hex: &#xB7FE;</p>  <!-- Display: 럾 -->

URL Encoding:

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

Encodings

MD5:

6f910705c8acd766137f48339a362a92

SHA1:

f4bdd91e5d3df21077d411f7abb3de6a06bb0f1e

Base64:

65++