Unicode Finder

"댉" U+B309(HANGUL SYLLABLE DAELG)

U+B309
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE DAELG

Programming

C
\uB309
JavaScript
\uB309
Java
\uB309
Json
\uB309
Python
\uB309
Perl
\x{B309}
PHP
\x{B309}
Ruby
\u{B309}
Rust
\u{B309}
Go
\uB309

Web

CSS
\00B309
HtmlDecimal
댉
HtmlHexadecimal
댉
Url
%EB%8C%89

Code

MD5
a769cbe77fa909732829a93d53aee254
Sha1
509ff728ae1d69a1236bc1778957213871e94545
Base64
64yJ

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uB309';
console.log(char);  // Output: 댉

Java:

char c = '\uB309';
System.out.println(c);  // Output: 댉

JSON:

{"text": "\uB309"}  // Value: 댉

Python:

char = '\uB309'
print(char)  # Output: 댉

Perl:

my $char = "\x{B309}";
print $char;  # Output: 댉

PHP:

$char = "\x{B309}";
echo $char;  // Output: 댉

Ruby:

char = "\u{B309}"
puts char  # Output: 댉

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#45833;</p>  <!-- Display: 댉 -->

HTML Hexadecimal:

<p>HTML hex: &#xB309;</p>  <!-- Display: 댉 -->

URL Encoding:

// 댉 URL encoding
https://unicodefinder.com/search.php?query=%EB%8C%89

Encodings

MD5:

a769cbe77fa909732829a93d53aee254

SHA1:

509ff728ae1d69a1236bc1778957213871e94545

Base64:

64yJ