Unicode Finder

"롌" U+B84C(HANGUL SYLLABLE RYELS)

U+B84C
ブロック名
Hangul Syllables
名前
HANGUL SYLLABLE RYELS

Programming

C
\uB84C
JavaScript
\uB84C
Java
\uB84C
Json
\uB84C
Python
\uB84C
Perl
\x{B84C}
PHP
\x{B84C}
Ruby
\u{B84C}
Rust
\u{B84C}
Go
\uB84C

Web

CSS
\00B84C
HtmlDecimal
롌
HtmlHexadecimal
롌
Url
%EB%A1%8C

Code

MD5
04ae349fc690676d7966150f199b5978
Sha1
c309b03126b1c4e6ce3c47985b36f65f2c166a56
Base64
66GM

使用例

Programming Languages

C:

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

JavaScript:

const char = '\uB84C';
console.log(char);  // Output: 롌

Java:

char c = '\uB84C';
System.out.println(c);  // Output: 롌

JSON:

{"text": "\uB84C"}  // Value: 롌

Python:

char = '\uB84C'
print(char)  # Output: 롌

Perl:

my $char = "\x{B84C}";
print $char;  # Output: 롌

PHP:

$char = "\x{B84C}";
echo $char;  // Output: 롌

Ruby:

char = "\u{B84C}"
puts char  # Output: 롌

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#47180;</p>  <!-- Display: 롌 -->

HTML Hexadecimal:

<p>HTML hex: &#xB84C;</p>  <!-- Display: 롌 -->

URL Encoding:

// 롌 URL encoding
https://unicodefinder.com/search.php?query=%EB%A1%8C

Encodings

MD5:

04ae349fc690676d7966150f199b5978

SHA1:

c309b03126b1c4e6ce3c47985b36f65f2c166a56

Base64:

66GM