Unicode Finder

"롏" U+B84F(HANGUL SYLLABLE RYELH)

U+B84F
ブロック名
Hangul Syllables
名前
HANGUL SYLLABLE RYELH

Programming

C
\uB84F
JavaScript
\uB84F
Java
\uB84F
Json
\uB84F
Python
\uB84F
Perl
\x{B84F}
PHP
\x{B84F}
Ruby
\u{B84F}
Rust
\u{B84F}
Go
\uB84F

Web

CSS
\00B84F
HtmlDecimal
롏
HtmlHexadecimal
롏
Url
%EB%A1%8F

Code

MD5
3164cab61f505a1a600c1081955fb64f
Sha1
fb52cf1c4867847346c06c8102ff9db06b910648
Base64
66GP

使用例

Programming Languages

C:

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

JavaScript:

const char = '\uB84F';
console.log(char);  // Output: 롏

Java:

char c = '\uB84F';
System.out.println(c);  // Output: 롏

JSON:

{"text": "\uB84F"}  // Value: 롏

Python:

char = '\uB84F'
print(char)  # Output: 롏

Perl:

my $char = "\x{B84F}";
print $char;  # Output: 롏

PHP:

$char = "\x{B84F}";
echo $char;  // Output: 롏

Ruby:

char = "\u{B84F}"
puts char  # Output: 롏

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#47183;</p>  <!-- Display: 롏 -->

HTML Hexadecimal:

<p>HTML hex: &#xB84F;</p>  <!-- Display: 롏 -->

URL Encoding:

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

Encodings

MD5:

3164cab61f505a1a600c1081955fb64f

SHA1:

fb52cf1c4867847346c06c8102ff9db06b910648

Base64:

66GP