Unicode Finder

"룢" U+B8E2(HANGUL SYLLABLE RYOJ)

U+B8E2
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE RYOJ

Programming

C
\uB8E2
JavaScript
\uB8E2
Java
\uB8E2
Json
\uB8E2
Python
\uB8E2
Perl
\x{B8E2}
PHP
\x{B8E2}
Ruby
\u{B8E2}
Rust
\u{B8E2}
Go
\uB8E2

Web

CSS
\00B8E2
HtmlDecimal
룢
HtmlHexadecimal
룢
Url
%EB%A3%A2

Code

MD5
79fab9eb8f165d9120a40dac1d715d2a
Sha1
a12533ceb1df3926042a016666628b6f03085725
Base64
66Oi

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uB8E2';
console.log(char);  // Output: 룢

Java:

char c = '\uB8E2';
System.out.println(c);  // Output: 룢

JSON:

{"text": "\uB8E2"}  // Value: 룢

Python:

char = '\uB8E2'
print(char)  # Output: 룢

Perl:

my $char = "\x{B8E2}";
print $char;  # Output: 룢

PHP:

$char = "\x{B8E2}";
echo $char;  // Output: 룢

Ruby:

char = "\u{B8E2}"
puts char  # Output: 룢

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#47330;</p>  <!-- Display: 룢 -->

HTML Hexadecimal:

<p>HTML hex: &#xB8E2;</p>  <!-- Display: 룢 -->

URL Encoding:

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

Encodings

MD5:

79fab9eb8f165d9120a40dac1d715d2a

SHA1:

a12533ceb1df3926042a016666628b6f03085725

Base64:

66Oi