Unicode Finder

"딉" U+B509(HANGUL SYLLABLE DYIB)

U+B509
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE DYIB

Programming

C
\uB509
JavaScript
\uB509
Java
\uB509
Json
\uB509
Python
\uB509
Perl
\x{B509}
PHP
\x{B509}
Ruby
\u{B509}
Rust
\u{B509}
Go
\uB509

Web

CSS
\00B509
HtmlDecimal
딉
HtmlHexadecimal
딉
Url
%EB%94%89

Code

MD5
1b52fb62f88363216b5df533779bfddd
Sha1
9a630bbe479d2eae29b996ebfc25cb0daef51e38
Base64
65SJ

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uB509';
console.log(char);  // Output: 딉

Java:

char c = '\uB509';
System.out.println(c);  // Output: 딉

JSON:

{"text": "\uB509"}  // Value: 딉

Python:

char = '\uB509'
print(char)  # Output: 딉

Perl:

my $char = "\x{B509}";
print $char;  # Output: 딉

PHP:

$char = "\x{B509}";
echo $char;  // Output: 딉

Ruby:

char = "\u{B509}"
puts char  # Output: 딉

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#46345;</p>  <!-- Display: 딉 -->

HTML Hexadecimal:

<p>HTML hex: &#xB509;</p>  <!-- Display: 딉 -->

URL Encoding:

// 딉 URL encoding
https://unicodefinder.com/search.php?query=%EB%94%89

Encodings

MD5:

1b52fb62f88363216b5df533779bfddd

SHA1:

9a630bbe479d2eae29b996ebfc25cb0daef51e38

Base64:

65SJ