Unicode Finder

"됩" U+B429(HANGUL SYLLABLE DOEB)

U+B429
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE DOEB

Programming

C
\uB429
JavaScript
\uB429
Java
\uB429
Json
\uB429
Python
\uB429
Perl
\x{B429}
PHP
\x{B429}
Ruby
\u{B429}
Rust
\u{B429}
Go
\uB429

Web

CSS
\00B429
HtmlDecimal
됩
HtmlHexadecimal
됩
Url
%EB%90%A9

Code

MD5
a32db5bcaecb0fb317a8b86bf17b8964
Sha1
a891e6b611f1d0494f4a9a779d1168f654299199
Base64
65Cp

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uB429';
console.log(char);  // Output: 됩

Java:

char c = '\uB429';
System.out.println(c);  // Output: 됩

JSON:

{"text": "\uB429"}  // Value: 됩

Python:

char = '\uB429'
print(char)  # Output: 됩

Perl:

my $char = "\x{B429}";
print $char;  # Output: 됩

PHP:

$char = "\x{B429}";
echo $char;  // Output: 됩

Ruby:

char = "\u{B429}"
puts char  # Output: 됩

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#46121;</p>  <!-- Display: 됩 -->

HTML Hexadecimal:

<p>HTML hex: &#xB429;</p>  <!-- Display: 됩 -->

URL Encoding:

// 됩 URL encoding
https://unicodefinder.com/search.php?query=%EB%90%A9

Encodings

MD5:

a32db5bcaecb0fb317a8b86bf17b8964

SHA1:

a891e6b611f1d0494f4a9a779d1168f654299199

Base64:

65Cp