Unicode Finder

"롬" U+B86C(HANGUL SYLLABLE ROM)

U+B86C
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE ROM

Programming

C
\uB86C
JavaScript
\uB86C
Java
\uB86C
Json
\uB86C
Python
\uB86C
Perl
\x{B86C}
PHP
\x{B86C}
Ruby
\u{B86C}
Rust
\u{B86C}
Go
\uB86C

Web

CSS
\00B86C
HtmlDecimal
롬
HtmlHexadecimal
롬
Url
%EB%A1%AC

Code

MD5
6cf1f9fc8995ded4e989b2f76716c3da
Sha1
bd29b0af247600782234f94020b0d6b79dbd491a
Base64
66Gs

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uB86C';
console.log(char);  // Output: 롬

Java:

char c = '\uB86C';
System.out.println(c);  // Output: 롬

JSON:

{"text": "\uB86C"}  // Value: 롬

Python:

char = '\uB86C'
print(char)  # Output: 롬

Perl:

my $char = "\x{B86C}";
print $char;  # Output: 롬

PHP:

$char = "\x{B86C}";
echo $char;  // Output: 롬

Ruby:

char = "\u{B86C}"
puts char  # Output: 롬

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#47212;</p>  <!-- Display: 롬 -->

HTML Hexadecimal:

<p>HTML hex: &#xB86C;</p>  <!-- Display: 롬 -->

URL Encoding:

// 롬 URL encoding
https://unicodefinder.com/search.php?query=%EB%A1%AC

Encodings

MD5:

6cf1f9fc8995ded4e989b2f76716c3da

SHA1:

bd29b0af247600782234f94020b0d6b79dbd491a

Base64:

66Gs