Unicode Finder

"룭" U+B8ED(HANGUL SYLLABLE RUNJ)

U+B8ED
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE RUNJ

Programming

C
\uB8ED
JavaScript
\uB8ED
Java
\uB8ED
Json
\uB8ED
Python
\uB8ED
Perl
\x{B8ED}
PHP
\x{B8ED}
Ruby
\u{B8ED}
Rust
\u{B8ED}
Go
\uB8ED

Web

CSS
\00B8ED
HtmlDecimal
룭
HtmlHexadecimal
룭
Url
%EB%A3%AD

Code

MD5
f69598a601286755c4055abbe5845312
Sha1
03d542d6cc8a1edffec9e815a428ce288ce07589
Base64
66Ot

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uB8ED';
console.log(char);  // Output: 룭

Java:

char c = '\uB8ED';
System.out.println(c);  // Output: 룭

JSON:

{"text": "\uB8ED"}  // Value: 룭

Python:

char = '\uB8ED'
print(char)  # Output: 룭

Perl:

my $char = "\x{B8ED}";
print $char;  # Output: 룭

PHP:

$char = "\x{B8ED}";
echo $char;  // Output: 룭

Ruby:

char = "\u{B8ED}"
puts char  # Output: 룭

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#47341;</p>  <!-- Display: 룭 -->

HTML Hexadecimal:

<p>HTML hex: &#xB8ED;</p>  <!-- Display: 룭 -->

URL Encoding:

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

Encodings

MD5:

f69598a601286755c4055abbe5845312

SHA1:

03d542d6cc8a1edffec9e815a428ce288ce07589

Base64:

66Ot