Unicode Finder

"륃" U+B943(HANGUL SYLLABLE RWID)

U+B943
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE RWID

Programming

C
\uB943
JavaScript
\uB943
Java
\uB943
Json
\uB943
Python
\uB943
Perl
\x{B943}
PHP
\x{B943}
Ruby
\u{B943}
Rust
\u{B943}
Go
\uB943

Web

CSS
\00B943
HtmlDecimal
륃
HtmlHexadecimal
륃
Url
%EB%A5%83

Code

MD5
6b05778fcff366eee323033e7bcc4381
Sha1
d35fbfe7f2fad8a2e1a9c06d1e26d60c62dc3e82
Base64
66WD

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uB943';
console.log(char);  // Output: 륃

Java:

char c = '\uB943';
System.out.println(c);  // Output: 륃

JSON:

{"text": "\uB943"}  // Value: 륃

Python:

char = '\uB943'
print(char)  # Output: 륃

Perl:

my $char = "\x{B943}";
print $char;  # Output: 륃

PHP:

$char = "\x{B943}";
echo $char;  // Output: 륃

Ruby:

char = "\u{B943}"
puts char  # Output: 륃

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#47427;</p>  <!-- Display: 륃 -->

HTML Hexadecimal:

<p>HTML hex: &#xB943;</p>  <!-- Display: 륃 -->

URL Encoding:

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

Encodings

MD5:

6b05778fcff366eee323033e7bcc4381

SHA1:

d35fbfe7f2fad8a2e1a9c06d1e26d60c62dc3e82

Base64:

66WD