Unicode Finder

"릏" U+B98F(HANGUL SYLLABLE REUH)

U+B98F
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE REUH

Programming

C
\uB98F
JavaScript
\uB98F
Java
\uB98F
Json
\uB98F
Python
\uB98F
Perl
\x{B98F}
PHP
\x{B98F}
Ruby
\u{B98F}
Rust
\u{B98F}
Go
\uB98F

Web

CSS
\00B98F
HtmlDecimal
릏
HtmlHexadecimal
릏
Url
%EB%A6%8F

Code

MD5
2fd5a2412d96b982262e4ab175a06a1b
Sha1
f73359560215d961eb82f9a84ec56e77886c92f9
Base64
66aP

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uB98F';
console.log(char);  // Output: 릏

Java:

char c = '\uB98F';
System.out.println(c);  // Output: 릏

JSON:

{"text": "\uB98F"}  // Value: 릏

Python:

char = '\uB98F'
print(char)  # Output: 릏

Perl:

my $char = "\x{B98F}";
print $char;  # Output: 릏

PHP:

$char = "\x{B98F}";
echo $char;  // Output: 릏

Ruby:

char = "\u{B98F}"
puts char  # Output: 릏

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#47503;</p>  <!-- Display: 릏 -->

HTML Hexadecimal:

<p>HTML hex: &#xB98F;</p>  <!-- Display: 릏 -->

URL Encoding:

// 릏 URL encoding
https://unicodefinder.com/search.php?query=%EB%A6%8F

Encodings

MD5:

2fd5a2412d96b982262e4ab175a06a1b

SHA1:

f73359560215d961eb82f9a84ec56e77886c92f9

Base64:

66aP