Unicode Finder

"룏" U+B8CF(HANGUL SYLLABLE RYOGS)

U+B8CF
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE RYOGS

Programming

C
\uB8CF
JavaScript
\uB8CF
Java
\uB8CF
Json
\uB8CF
Python
\uB8CF
Perl
\x{B8CF}
PHP
\x{B8CF}
Ruby
\u{B8CF}
Rust
\u{B8CF}
Go
\uB8CF

Web

CSS
\00B8CF
HtmlDecimal
룏
HtmlHexadecimal
룏
Url
%EB%A3%8F

Code

MD5
73c23ea356250c846e6d1d84825316ce
Sha1
63c463b53e1cc70abf92bb63380a4362ead63ef2
Base64
66OP

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uB8CF';
console.log(char);  // Output: 룏

Java:

char c = '\uB8CF';
System.out.println(c);  // Output: 룏

JSON:

{"text": "\uB8CF"}  // Value: 룏

Python:

char = '\uB8CF'
print(char)  # Output: 룏

Perl:

my $char = "\x{B8CF}";
print $char;  # Output: 룏

PHP:

$char = "\x{B8CF}";
echo $char;  // Output: 룏

Ruby:

char = "\u{B8CF}"
puts char  # Output: 룏

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#47311;</p>  <!-- Display: 룏 -->

HTML Hexadecimal:

<p>HTML hex: &#xB8CF;</p>  <!-- Display: 룏 -->

URL Encoding:

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

Encodings

MD5:

73c23ea356250c846e6d1d84825316ce

SHA1:

63c463b53e1cc70abf92bb63380a4362ead63ef2

Base64:

66OP