Unicode Finder

"륀" U+B940(HANGUL SYLLABLE RWIN)

U+B940
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE RWIN

Programming

C
\uB940
JavaScript
\uB940
Java
\uB940
Json
\uB940
Python
\uB940
Perl
\x{B940}
PHP
\x{B940}
Ruby
\u{B940}
Rust
\u{B940}
Go
\uB940

Web

CSS
\00B940
HtmlDecimal
륀
HtmlHexadecimal
륀
Url
%EB%A5%80

Code

MD5
adfda06ad5a676256d55e97a8477e9a8
Sha1
2f525048c559183e74234b72b8b0d084cd425cbf
Base64
66WA

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uB940';
console.log(char);  // Output: 륀

Java:

char c = '\uB940';
System.out.println(c);  // Output: 륀

JSON:

{"text": "\uB940"}  // Value: 륀

Python:

char = '\uB940'
print(char)  # Output: 륀

Perl:

my $char = "\x{B940}";
print $char;  # Output: 륀

PHP:

$char = "\x{B940}";
echo $char;  // Output: 륀

Ruby:

char = "\u{B940}"
puts char  # Output: 륀

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#47424;</p>  <!-- Display: 륀 -->

HTML Hexadecimal:

<p>HTML hex: &#xB940;</p>  <!-- Display: 륀 -->

URL Encoding:

// 륀 URL encoding
https://unicodefinder.com/search.php?query=%EB%A5%80

Encodings

MD5:

adfda06ad5a676256d55e97a8477e9a8

SHA1:

2f525048c559183e74234b72b8b0d084cd425cbf

Base64:

66WA