Unicode Finder

"럫" U+B7EB(HANGUL SYLLABLE RYAEH)

U+B7EB
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE RYAEH

Programming

C
\uB7EB
JavaScript
\uB7EB
Java
\uB7EB
Json
\uB7EB
Python
\uB7EB
Perl
\x{B7EB}
PHP
\x{B7EB}
Ruby
\u{B7EB}
Rust
\u{B7EB}
Go
\uB7EB

Web

CSS
\00B7EB
HtmlDecimal
럫
HtmlHexadecimal
럫
Url
%EB%9F%AB

Code

MD5
784c3fb87c8ccb76a5dc942057e1d7a5
Sha1
f857cd709988b03c0e24e7efa36b32e5acf4c0c0
Base64
65+r

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uB7EB';
console.log(char);  // Output: 럫

Java:

char c = '\uB7EB';
System.out.println(c);  // Output: 럫

JSON:

{"text": "\uB7EB"}  // Value: 럫

Python:

char = '\uB7EB'
print(char)  # Output: 럫

Perl:

my $char = "\x{B7EB}";
print $char;  # Output: 럫

PHP:

$char = "\x{B7EB}";
echo $char;  // Output: 럫

Ruby:

char = "\u{B7EB}"
puts char  # Output: 럫

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#47083;</p>  <!-- Display: 럫 -->

HTML Hexadecimal:

<p>HTML hex: &#xB7EB;</p>  <!-- Display: 럫 -->

URL Encoding:

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

Encodings

MD5:

784c3fb87c8ccb76a5dc942057e1d7a5

SHA1:

f857cd709988b03c0e24e7efa36b32e5acf4c0c0

Base64:

65+r