Unicode Finder

"륨" U+B968(HANGUL SYLLABLE RYUM)

U+B968
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE RYUM

Programming

C
\uB968
JavaScript
\uB968
Java
\uB968
Json
\uB968
Python
\uB968
Perl
\x{B968}
PHP
\x{B968}
Ruby
\u{B968}
Rust
\u{B968}
Go
\uB968

Web

CSS
\00B968
HtmlDecimal
륨
HtmlHexadecimal
륨
Url
%EB%A5%A8

Code

MD5
2fc743410f7c843492c656d4c7db3264
Sha1
22a996a728c206e8ad14e18186d1e923d16e85d7
Base64
66Wo

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uB968';
console.log(char);  // Output: 륨

Java:

char c = '\uB968';
System.out.println(c);  // Output: 륨

JSON:

{"text": "\uB968"}  // Value: 륨

Python:

char = '\uB968'
print(char)  # Output: 륨

Perl:

my $char = "\x{B968}";
print $char;  # Output: 륨

PHP:

$char = "\x{B968}";
echo $char;  // Output: 륨

Ruby:

char = "\u{B968}"
puts char  # Output: 륨

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#47464;</p>  <!-- Display: 륨 -->

HTML Hexadecimal:

<p>HTML hex: &#xB968;</p>  <!-- Display: 륨 -->

URL Encoding:

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

Encodings

MD5:

2fc743410f7c843492c656d4c7db3264

SHA1:

22a996a728c206e8ad14e18186d1e923d16e85d7

Base64:

66Wo