Unicode Finder

"댎" U+B30E(HANGUL SYLLABLE DAELP)

U+B30E
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE DAELP

Programming

C
\uB30E
JavaScript
\uB30E
Java
\uB30E
Json
\uB30E
Python
\uB30E
Perl
\x{B30E}
PHP
\x{B30E}
Ruby
\u{B30E}
Rust
\u{B30E}
Go
\uB30E

Web

CSS
\00B30E
HtmlDecimal
댎
HtmlHexadecimal
댎
Url
%EB%8C%8E

Code

MD5
81adec8289ec88fbe4af46caf81a9fcb
Sha1
660ec80ed6a334ff4f671ebe3bb7755a80c4e9db
Base64
64yO

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uB30E';
console.log(char);  // Output: 댎

Java:

char c = '\uB30E';
System.out.println(c);  // Output: 댎

JSON:

{"text": "\uB30E"}  // Value: 댎

Python:

char = '\uB30E'
print(char)  # Output: 댎

Perl:

my $char = "\x{B30E}";
print $char;  # Output: 댎

PHP:

$char = "\x{B30E}";
echo $char;  // Output: 댎

Ruby:

char = "\u{B30E}"
puts char  # Output: 댎

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#45838;</p>  <!-- Display: 댎 -->

HTML Hexadecimal:

<p>HTML hex: &#xB30E;</p>  <!-- Display: 댎 -->

URL Encoding:

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

Encodings

MD5:

81adec8289ec88fbe4af46caf81a9fcb

SHA1:

660ec80ed6a334ff4f671ebe3bb7755a80c4e9db

Base64:

64yO