Unicode Finder

"룇" U+B8C7(HANGUL SYLLABLE ROEC)

U+B8C7
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE ROEC

Programming

C
\uB8C7
JavaScript
\uB8C7
Java
\uB8C7
Json
\uB8C7
Python
\uB8C7
Perl
\x{B8C7}
PHP
\x{B8C7}
Ruby
\u{B8C7}
Rust
\u{B8C7}
Go
\uB8C7

Web

CSS
\00B8C7
HtmlDecimal
룇
HtmlHexadecimal
룇
Url
%EB%A3%87

Code

MD5
fbdf98679f9fd969e1e74bf6bcb7d5a8
Sha1
28be28e685005058f48114550545000c796d90eb
Base64
66OH

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uB8C7';
console.log(char);  // Output: 룇

Java:

char c = '\uB8C7';
System.out.println(c);  // Output: 룇

JSON:

{"text": "\uB8C7"}  // Value: 룇

Python:

char = '\uB8C7'
print(char)  # Output: 룇

Perl:

my $char = "\x{B8C7}";
print $char;  # Output: 룇

PHP:

$char = "\x{B8C7}";
echo $char;  // Output: 룇

Ruby:

char = "\u{B8C7}"
puts char  # Output: 룇

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#47303;</p>  <!-- Display: 룇 -->

HTML Hexadecimal:

<p>HTML hex: &#xB8C7;</p>  <!-- Display: 룇 -->

URL Encoding:

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

Encodings

MD5:

fbdf98679f9fd969e1e74bf6bcb7d5a8

SHA1:

28be28e685005058f48114550545000c796d90eb

Base64:

66OH