Unicode Finder

"뺫" U+BEAB(HANGUL SYLLABLE BBYAS)

U+BEAB
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE BBYAS

Programming

C
\uBEAB
JavaScript
\uBEAB
Java
\uBEAB
Json
\uBEAB
Python
\uBEAB
Perl
\x{BEAB}
PHP
\x{BEAB}
Ruby
\u{BEAB}
Rust
\u{BEAB}
Go
\uBEAB

Web

CSS
\00BEAB
HtmlDecimal
뺫
HtmlHexadecimal
뺫
Url
%EB%BA%AB

Code

MD5
536a15c7828dece7dc1b2bacbf1b094b
Sha1
5535098056b997e0e6f6d469d8b20d961cdf4e16
Base64
67qr

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uBEAB';
console.log(char);  // Output: 뺫

Java:

char c = '\uBEAB';
System.out.println(c);  // Output: 뺫

JSON:

{"text": "\uBEAB"}  // Value: 뺫

Python:

char = '\uBEAB'
print(char)  # Output: 뺫

Perl:

my $char = "\x{BEAB}";
print $char;  # Output: 뺫

PHP:

$char = "\x{BEAB}";
echo $char;  // Output: 뺫

Ruby:

char = "\u{BEAB}"
puts char  # Output: 뺫

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#48811;</p>  <!-- Display: 뺫 -->

HTML Hexadecimal:

<p>HTML hex: &#xBEAB;</p>  <!-- Display: 뺫 -->

URL Encoding:

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

Encodings

MD5:

536a15c7828dece7dc1b2bacbf1b094b

SHA1:

5535098056b997e0e6f6d469d8b20d961cdf4e16

Base64:

67qr