Unicode Finder

"룈" U+B8C8(HANGUL SYLLABLE ROEK)

U+B8C8
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE ROEK

Programming

C
\uB8C8
JavaScript
\uB8C8
Java
\uB8C8
Json
\uB8C8
Python
\uB8C8
Perl
\x{B8C8}
PHP
\x{B8C8}
Ruby
\u{B8C8}
Rust
\u{B8C8}
Go
\uB8C8

Web

CSS
\00B8C8
HtmlDecimal
룈
HtmlHexadecimal
룈
Url
%EB%A3%88

Code

MD5
9a6b46f95a680d7e98e70430700e1acc
Sha1
2bcf591d8e5f2988fdcf554b9152a625303acddf
Base64
66OI

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uB8C8';
console.log(char);  // Output: 룈

Java:

char c = '\uB8C8';
System.out.println(c);  // Output: 룈

JSON:

{"text": "\uB8C8"}  // Value: 룈

Python:

char = '\uB8C8'
print(char)  # Output: 룈

Perl:

my $char = "\x{B8C8}";
print $char;  # Output: 룈

PHP:

$char = "\x{B8C8}";
echo $char;  // Output: 룈

Ruby:

char = "\u{B8C8}"
puts char  # Output: 룈

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#47304;</p>  <!-- Display: 룈 -->

HTML Hexadecimal:

<p>HTML hex: &#xB8C8;</p>  <!-- Display: 룈 -->

URL Encoding:

// 룈 URL encoding
https://unicodefinder.com/search.php?query=%EB%A3%88

Encodings

MD5:

9a6b46f95a680d7e98e70430700e1acc

SHA1:

2bcf591d8e5f2988fdcf554b9152a625303acddf

Base64:

66OI