Unicode Finder

"릫" U+B9AB(HANGUL SYLLABLE RYIH)

U+B9AB
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE RYIH

Programming

C
\uB9AB
JavaScript
\uB9AB
Java
\uB9AB
Json
\uB9AB
Python
\uB9AB
Perl
\x{B9AB}
PHP
\x{B9AB}
Ruby
\u{B9AB}
Rust
\u{B9AB}
Go
\uB9AB

Web

CSS
\00B9AB
HtmlDecimal
릫
HtmlHexadecimal
릫
Url
%EB%A6%AB

Code

MD5
746335a62a305988951980dbacce038d
Sha1
6e609c6063cc720b0c7034d1f1190611f69ebfdc
Base64
66ar

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uB9AB';
console.log(char);  // Output: 릫

Java:

char c = '\uB9AB';
System.out.println(c);  // Output: 릫

JSON:

{"text": "\uB9AB"}  // Value: 릫

Python:

char = '\uB9AB'
print(char)  # Output: 릫

Perl:

my $char = "\x{B9AB}";
print $char;  # Output: 릫

PHP:

$char = "\x{B9AB}";
echo $char;  // Output: 릫

Ruby:

char = "\u{B9AB}"
puts char  # Output: 릫

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#47531;</p>  <!-- Display: 릫 -->

HTML Hexadecimal:

<p>HTML hex: &#xB9AB;</p>  <!-- Display: 릫 -->

URL Encoding:

// 릫 URL encoding
https://unicodefinder.com/search.php?query=%EB%A6%AB

Encodings

MD5:

746335a62a305988951980dbacce038d

SHA1:

6e609c6063cc720b0c7034d1f1190611f69ebfdc

Base64:

66ar