Unicode Finder

"륞" U+B95E(HANGUL SYLLABLE RYUNH)

U+B95E
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE RYUNH

Programming

C
\uB95E
JavaScript
\uB95E
Java
\uB95E
Json
\uB95E
Python
\uB95E
Perl
\x{B95E}
PHP
\x{B95E}
Ruby
\u{B95E}
Rust
\u{B95E}
Go
\uB95E

Web

CSS
\00B95E
HtmlDecimal
륞
HtmlHexadecimal
륞
Url
%EB%A5%9E

Code

MD5
fbb4474800ed827ec40437b2f9e06985
Sha1
af259699014764d2e2244b391667dac2ec1c9114
Base64
66We

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uB95E';
console.log(char);  // Output: 륞

Java:

char c = '\uB95E';
System.out.println(c);  // Output: 륞

JSON:

{"text": "\uB95E"}  // Value: 륞

Python:

char = '\uB95E'
print(char)  # Output: 륞

Perl:

my $char = "\x{B95E}";
print $char;  # Output: 륞

PHP:

$char = "\x{B95E}";
echo $char;  // Output: 륞

Ruby:

char = "\u{B95E}"
puts char  # Output: 륞

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#47454;</p>  <!-- Display: 륞 -->

HTML Hexadecimal:

<p>HTML hex: &#xB95E;</p>  <!-- Display: 륞 -->

URL Encoding:

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

Encodings

MD5:

fbb4474800ed827ec40437b2f9e06985

SHA1:

af259699014764d2e2244b391667dac2ec1c9114

Base64:

66We