Unicode Finder

"릩" U+B9A9(HANGUL SYLLABLE RYIT)

U+B9A9
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE RYIT

Programming

C
\uB9A9
JavaScript
\uB9A9
Java
\uB9A9
Json
\uB9A9
Python
\uB9A9
Perl
\x{B9A9}
PHP
\x{B9A9}
Ruby
\u{B9A9}
Rust
\u{B9A9}
Go
\uB9A9

Web

CSS
\00B9A9
HtmlDecimal
릩
HtmlHexadecimal
릩
Url
%EB%A6%A9

Code

MD5
fadf7abef805e0c7e27ebd7a7026caeb
Sha1
784fa083091bcc707ce3bb589dcb84e8e07750e9
Base64
66ap

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uB9A9';
console.log(char);  // Output: 릩

Java:

char c = '\uB9A9';
System.out.println(c);  // Output: 릩

JSON:

{"text": "\uB9A9"}  // Value: 릩

Python:

char = '\uB9A9'
print(char)  # Output: 릩

Perl:

my $char = "\x{B9A9}";
print $char;  # Output: 릩

PHP:

$char = "\x{B9A9}";
echo $char;  // Output: 릩

Ruby:

char = "\u{B9A9}"
puts char  # Output: 릩

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#47529;</p>  <!-- Display: 릩 -->

HTML Hexadecimal:

<p>HTML hex: &#xB9A9;</p>  <!-- Display: 릩 -->

URL Encoding:

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

Encodings

MD5:

fadf7abef805e0c7e27ebd7a7026caeb

SHA1:

784fa083091bcc707ce3bb589dcb84e8e07750e9

Base64:

66ap