Unicode Finder

"뢫" U+B8AB(HANGUL SYLLABLE RWAEC)

U+B8AB
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE RWAEC

Programming

C
\uB8AB
JavaScript
\uB8AB
Java
\uB8AB
Json
\uB8AB
Python
\uB8AB
Perl
\x{B8AB}
PHP
\x{B8AB}
Ruby
\u{B8AB}
Rust
\u{B8AB}
Go
\uB8AB

Web

CSS
\00B8AB
HtmlDecimal
뢫
HtmlHexadecimal
뢫
Url
%EB%A2%AB

Code

MD5
9a4002a8852184394b253e40a803717b
Sha1
95781fa30e59766cfff346cbb2d7944f3309f7dc
Base64
66Kr

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uB8AB';
console.log(char);  // Output: 뢫

Java:

char c = '\uB8AB';
System.out.println(c);  // Output: 뢫

JSON:

{"text": "\uB8AB"}  // Value: 뢫

Python:

char = '\uB8AB'
print(char)  # Output: 뢫

Perl:

my $char = "\x{B8AB}";
print $char;  # Output: 뢫

PHP:

$char = "\x{B8AB}";
echo $char;  // Output: 뢫

Ruby:

char = "\u{B8AB}"
puts char  # Output: 뢫

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#47275;</p>  <!-- Display: 뢫 -->

HTML Hexadecimal:

<p>HTML hex: &#xB8AB;</p>  <!-- Display: 뢫 -->

URL Encoding:

// 뢫 URL encoding
https://unicodefinder.com/search.php?query=%EB%A2%AB

Encodings

MD5:

9a4002a8852184394b253e40a803717b

SHA1:

95781fa30e59766cfff346cbb2d7944f3309f7dc

Base64:

66Kr