Unicode Finder

"뻍" U+BECD(HANGUL SYLLABLE BBYAET)

U+BECD
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE BBYAET

Programming

C
\uBECD
JavaScript
\uBECD
Java
\uBECD
Json
\uBECD
Python
\uBECD
Perl
\x{BECD}
PHP
\x{BECD}
Ruby
\u{BECD}
Rust
\u{BECD}
Go
\uBECD

Web

CSS
\00BECD
HtmlDecimal
뻍
HtmlHexadecimal
뻍
Url
%EB%BB%8D

Code

MD5
721f54687248e3432a4e96849e254aef
Sha1
afa172694f59cdabb733575ae8a6c2b374fccd6b
Base64
67uN

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uBECD';
console.log(char);  // Output: 뻍

Java:

char c = '\uBECD';
System.out.println(c);  // Output: 뻍

JSON:

{"text": "\uBECD"}  // Value: 뻍

Python:

char = '\uBECD'
print(char)  # Output: 뻍

Perl:

my $char = "\x{BECD}";
print $char;  # Output: 뻍

PHP:

$char = "\x{BECD}";
echo $char;  // Output: 뻍

Ruby:

char = "\u{BECD}"
puts char  # Output: 뻍

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#48845;</p>  <!-- Display: 뻍 -->

HTML Hexadecimal:

<p>HTML hex: &#xBECD;</p>  <!-- Display: 뻍 -->

URL Encoding:

// 뻍 URL encoding
https://unicodefinder.com/search.php?query=%EB%BB%8D

Encodings

MD5:

721f54687248e3432a4e96849e254aef

SHA1:

afa172694f59cdabb733575ae8a6c2b374fccd6b

Base64:

67uN