Unicode Finder

"럿" U+B7FF(HANGUL SYLLABLE REOS)

U+B7FF
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE REOS

Programming

C
\uB7FF
JavaScript
\uB7FF
Java
\uB7FF
Json
\uB7FF
Python
\uB7FF
Perl
\x{B7FF}
PHP
\x{B7FF}
Ruby
\u{B7FF}
Rust
\u{B7FF}
Go
\uB7FF

Web

CSS
\00B7FF
HtmlDecimal
럿
HtmlHexadecimal
럿
Url
%EB%9F%BF

Code

MD5
737cce0a36f534ebc1e50bcfe25d3342
Sha1
5b298d4b49275cc751bce34b55bbdc57a9cc4dec
Base64
65+/

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uB7FF';
console.log(char);  // Output: 럿

Java:

char c = '\uB7FF';
System.out.println(c);  // Output: 럿

JSON:

{"text": "\uB7FF"}  // Value: 럿

Python:

char = '\uB7FF'
print(char)  # Output: 럿

Perl:

my $char = "\x{B7FF}";
print $char;  # Output: 럿

PHP:

$char = "\x{B7FF}";
echo $char;  // Output: 럿

Ruby:

char = "\u{B7FF}"
puts char  # Output: 럿

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#47103;</p>  <!-- Display: 럿 -->

HTML Hexadecimal:

<p>HTML hex: &#xB7FF;</p>  <!-- Display: 럿 -->

URL Encoding:

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

Encodings

MD5:

737cce0a36f534ebc1e50bcfe25d3342

SHA1:

5b298d4b49275cc751bce34b55bbdc57a9cc4dec

Base64:

65+/