Unicode Finder

"붠" U+BDA0(HANGUL SYLLABLE BWEON)

U+BDA0
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE BWEON

Programming

C
\uBDA0
JavaScript
\uBDA0
Java
\uBDA0
Json
\uBDA0
Python
\uBDA0
Perl
\x{BDA0}
PHP
\x{BDA0}
Ruby
\u{BDA0}
Rust
\u{BDA0}
Go
\uBDA0

Web

CSS
\00BDA0
HtmlDecimal
붠
HtmlHexadecimal
붠
Url
%EB%B6%A0

Code

MD5
0438f558788ea4eb6173bd6a5c180575
Sha1
a4de5cef7632ac98f641d75302aff8d49230c729
Base64
67ag

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uBDA0';
console.log(char);  // Output: 붠

Java:

char c = '\uBDA0';
System.out.println(c);  // Output: 붠

JSON:

{"text": "\uBDA0"}  // Value: 붠

Python:

char = '\uBDA0'
print(char)  # Output: 붠

Perl:

my $char = "\x{BDA0}";
print $char;  # Output: 붠

PHP:

$char = "\x{BDA0}";
echo $char;  // Output: 붠

Ruby:

char = "\u{BDA0}"
puts char  # Output: 붠

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#48544;</p>  <!-- Display: 붠 -->

HTML Hexadecimal:

<p>HTML hex: &#xBDA0;</p>  <!-- Display: 붠 -->

URL Encoding:

// 붠 URL encoding
https://unicodefinder.com/search.php?query=%EB%B6%A0

Encodings

MD5:

0438f558788ea4eb6173bd6a5c180575

SHA1:

a4de5cef7632ac98f641d75302aff8d49230c729

Base64:

67ag