Unicode Finder

"륒" U+B952(HANGUL SYLLABLE RWIJ)

U+B952
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE RWIJ

Programming

C
\uB952
JavaScript
\uB952
Java
\uB952
Json
\uB952
Python
\uB952
Perl
\x{B952}
PHP
\x{B952}
Ruby
\u{B952}
Rust
\u{B952}
Go
\uB952

Web

CSS
\00B952
HtmlDecimal
륒
HtmlHexadecimal
륒
Url
%EB%A5%92

Code

MD5
481a9609c200c74859ee390d276476ed
Sha1
38c646861f4c7dac22f444d889f5cdc3fd7c639b
Base64
66WS

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uB952';
console.log(char);  // Output: 륒

Java:

char c = '\uB952';
System.out.println(c);  // Output: 륒

JSON:

{"text": "\uB952"}  // Value: 륒

Python:

char = '\uB952'
print(char)  # Output: 륒

Perl:

my $char = "\x{B952}";
print $char;  # Output: 륒

PHP:

$char = "\x{B952}";
echo $char;  // Output: 륒

Ruby:

char = "\u{B952}"
puts char  # Output: 륒

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#47442;</p>  <!-- Display: 륒 -->

HTML Hexadecimal:

<p>HTML hex: &#xB952;</p>  <!-- Display: 륒 -->

URL Encoding:

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

Encodings

MD5:

481a9609c200c74859ee390d276476ed

SHA1:

38c646861f4c7dac22f444d889f5cdc3fd7c639b

Base64:

66WS