Unicode Finder

"룚" U+B8DA(HANGUL SYLLABLE RYOLP)

U+B8DA
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE RYOLP

Programming

C
\uB8DA
JavaScript
\uB8DA
Java
\uB8DA
Json
\uB8DA
Python
\uB8DA
Perl
\x{B8DA}
PHP
\x{B8DA}
Ruby
\u{B8DA}
Rust
\u{B8DA}
Go
\uB8DA

Web

CSS
\00B8DA
HtmlDecimal
룚
HtmlHexadecimal
룚
Url
%EB%A3%9A

Code

MD5
20cffbdfbe7dae148860db1a084c60bc
Sha1
5439b14ad693dc3fc10b1668ecc3995fe6c3afe5
Base64
66Oa

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uB8DA';
console.log(char);  // Output: 룚

Java:

char c = '\uB8DA';
System.out.println(c);  // Output: 룚

JSON:

{"text": "\uB8DA"}  // Value: 룚

Python:

char = '\uB8DA'
print(char)  # Output: 룚

Perl:

my $char = "\x{B8DA}";
print $char;  # Output: 룚

PHP:

$char = "\x{B8DA}";
echo $char;  // Output: 룚

Ruby:

char = "\u{B8DA}"
puts char  # Output: 룚

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#47322;</p>  <!-- Display: 룚 -->

HTML Hexadecimal:

<p>HTML hex: &#xB8DA;</p>  <!-- Display: 룚 -->

URL Encoding:

// 룚 URL encoding
https://unicodefinder.com/search.php?query=%EB%A3%9A

Encodings

MD5:

20cffbdfbe7dae148860db1a084c60bc

SHA1:

5439b14ad693dc3fc10b1668ecc3995fe6c3afe5

Base64:

66Oa