Unicode Finder

"뢋" U+B88B(HANGUL SYLLABLE RWAS)

U+B88B
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE RWAS

Programming

C
\uB88B
JavaScript
\uB88B
Java
\uB88B
Json
\uB88B
Python
\uB88B
Perl
\x{B88B}
PHP
\x{B88B}
Ruby
\u{B88B}
Rust
\u{B88B}
Go
\uB88B

Web

CSS
\00B88B
HtmlDecimal
뢋
HtmlHexadecimal
뢋
Url
%EB%A2%8B

Code

MD5
03062b813617aa8e63eb7dcaabcc6448
Sha1
c95bb314b61fc91971427dae7c4912b1a8b199ea
Base64
66KL

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uB88B';
console.log(char);  // Output: 뢋

Java:

char c = '\uB88B';
System.out.println(c);  // Output: 뢋

JSON:

{"text": "\uB88B"}  // Value: 뢋

Python:

char = '\uB88B'
print(char)  # Output: 뢋

Perl:

my $char = "\x{B88B}";
print $char;  # Output: 뢋

PHP:

$char = "\x{B88B}";
echo $char;  // Output: 뢋

Ruby:

char = "\u{B88B}"
puts char  # Output: 뢋

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#47243;</p>  <!-- Display: 뢋 -->

HTML Hexadecimal:

<p>HTML hex: &#xB88B;</p>  <!-- Display: 뢋 -->

URL Encoding:

// 뢋 URL encoding
https://unicodefinder.com/search.php?query=%EB%A2%8B

Encodings

MD5:

03062b813617aa8e63eb7dcaabcc6448

SHA1:

c95bb314b61fc91971427dae7c4912b1a8b199ea

Base64:

66KL