Unicode Finder

"뤛" U+B91B(HANGUL SYLLABLE RWEOC)

U+B91B
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE RWEOC

Programming

C
\uB91B
JavaScript
\uB91B
Java
\uB91B
Json
\uB91B
Python
\uB91B
Perl
\x{B91B}
PHP
\x{B91B}
Ruby
\u{B91B}
Rust
\u{B91B}
Go
\uB91B

Web

CSS
\00B91B
HtmlDecimal
뤛
HtmlHexadecimal
뤛
Url
%EB%A4%9B

Code

MD5
2ab234d37865f77fe2d721053b0f69ec
Sha1
efb2cf7d3883287420111719e12a47da5fb8eba8
Base64
66Sb

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uB91B';
console.log(char);  // Output: 뤛

Java:

char c = '\uB91B';
System.out.println(c);  // Output: 뤛

JSON:

{"text": "\uB91B"}  // Value: 뤛

Python:

char = '\uB91B'
print(char)  # Output: 뤛

Perl:

my $char = "\x{B91B}";
print $char;  # Output: 뤛

PHP:

$char = "\x{B91B}";
echo $char;  // Output: 뤛

Ruby:

char = "\u{B91B}"
puts char  # Output: 뤛

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#47387;</p>  <!-- Display: 뤛 -->

HTML Hexadecimal:

<p>HTML hex: &#xB91B;</p>  <!-- Display: 뤛 -->

URL Encoding:

// 뤛 URL encoding
https://unicodefinder.com/search.php?query=%EB%A4%9B

Encodings

MD5:

2ab234d37865f77fe2d721053b0f69ec

SHA1:

efb2cf7d3883287420111719e12a47da5fb8eba8

Base64:

66Sb