Unicode Finder

"룫" U+B8EB(HANGUL SYLLABLE RUGS)

U+B8EB
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE RUGS

Programming

C
\uB8EB
JavaScript
\uB8EB
Java
\uB8EB
Json
\uB8EB
Python
\uB8EB
Perl
\x{B8EB}
PHP
\x{B8EB}
Ruby
\u{B8EB}
Rust
\u{B8EB}
Go
\uB8EB

Web

CSS
\00B8EB
HtmlDecimal
룫
HtmlHexadecimal
룫
Url
%EB%A3%AB

Code

MD5
3480e799b087227756c48948922e1288
Sha1
49a4312776cf33f8b50029283f72f215cdb521c5
Base64
66Or

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uB8EB';
console.log(char);  // Output: 룫

Java:

char c = '\uB8EB';
System.out.println(c);  // Output: 룫

JSON:

{"text": "\uB8EB"}  // Value: 룫

Python:

char = '\uB8EB'
print(char)  # Output: 룫

Perl:

my $char = "\x{B8EB}";
print $char;  # Output: 룫

PHP:

$char = "\x{B8EB}";
echo $char;  // Output: 룫

Ruby:

char = "\u{B8EB}"
puts char  # Output: 룫

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#47339;</p>  <!-- Display: 룫 -->

HTML Hexadecimal:

<p>HTML hex: &#xB8EB;</p>  <!-- Display: 룫 -->

URL Encoding:

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

Encodings

MD5:

3480e799b087227756c48948922e1288

SHA1:

49a4312776cf33f8b50029283f72f215cdb521c5

Base64:

66Or