Unicode Finder

"랺" U+B7BA(HANGUL SYLLABLE RYANH)

U+B7BA
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE RYANH

Programming

C
\uB7BA
JavaScript
\uB7BA
Java
\uB7BA
Json
\uB7BA
Python
\uB7BA
Perl
\x{B7BA}
PHP
\x{B7BA}
Ruby
\u{B7BA}
Rust
\u{B7BA}
Go
\uB7BA

Web

CSS
\00B7BA
HtmlDecimal
랺
HtmlHexadecimal
랺
Url
%EB%9E%BA

Code

MD5
e17f16067c10a525a941ee7935451064
Sha1
e8103a1a4523896ec0aaca9bf4cdf3f207e30612
Base64
6566

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uB7BA';
console.log(char);  // Output: 랺

Java:

char c = '\uB7BA';
System.out.println(c);  // Output: 랺

JSON:

{"text": "\uB7BA"}  // Value: 랺

Python:

char = '\uB7BA'
print(char)  # Output: 랺

Perl:

my $char = "\x{B7BA}";
print $char;  # Output: 랺

PHP:

$char = "\x{B7BA}";
echo $char;  // Output: 랺

Ruby:

char = "\u{B7BA}"
puts char  # Output: 랺

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#47034;</p>  <!-- Display: 랺 -->

HTML Hexadecimal:

<p>HTML hex: &#xB7BA;</p>  <!-- Display: 랺 -->

URL Encoding:

// 랺 URL encoding
https://unicodefinder.com/search.php?query=%EB%9E%BA

Encodings

MD5:

e17f16067c10a525a941ee7935451064

SHA1:

e8103a1a4523896ec0aaca9bf4cdf3f207e30612

Base64:

6566