Unicode Finder

"럼" U+B7FC(HANGUL SYLLABLE REOM)

U+B7FC
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE REOM

Programming

C
\uB7FC
JavaScript
\uB7FC
Java
\uB7FC
Json
\uB7FC
Python
\uB7FC
Perl
\x{B7FC}
PHP
\x{B7FC}
Ruby
\u{B7FC}
Rust
\u{B7FC}
Go
\uB7FC

Web

CSS
\00B7FC
HtmlDecimal
럼
HtmlHexadecimal
럼
Url
%EB%9F%BC

Code

MD5
570dee2d4c6fc3239820a51f7c3b03b1
Sha1
7ff69e2d8d608d4462e3e6f2ce3c62936c20170e
Base64
65+8

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uB7FC';
console.log(char);  // Output: 럼

Java:

char c = '\uB7FC';
System.out.println(c);  // Output: 럼

JSON:

{"text": "\uB7FC"}  // Value: 럼

Python:

char = '\uB7FC'
print(char)  # Output: 럼

Perl:

my $char = "\x{B7FC}";
print $char;  # Output: 럼

PHP:

$char = "\x{B7FC}";
echo $char;  // Output: 럼

Ruby:

char = "\u{B7FC}"
puts char  # Output: 럼

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#47100;</p>  <!-- Display: 럼 -->

HTML Hexadecimal:

<p>HTML hex: &#xB7FC;</p>  <!-- Display: 럼 -->

URL Encoding:

// 럼 URL encoding
https://unicodefinder.com/search.php?query=%EB%9F%BC

Encodings

MD5:

570dee2d4c6fc3239820a51f7c3b03b1

SHA1:

7ff69e2d8d608d4462e3e6f2ce3c62936c20170e

Base64:

65+8