Unicode Finder

"뎦" U+B3A6(HANGUL SYLLABLE DYEOP)

U+B3A6
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE DYEOP

Programming

C
\uB3A6
JavaScript
\uB3A6
Java
\uB3A6
Json
\uB3A6
Python
\uB3A6
Perl
\x{B3A6}
PHP
\x{B3A6}
Ruby
\u{B3A6}
Rust
\u{B3A6}
Go
\uB3A6

Web

CSS
\00B3A6
HtmlDecimal
뎦
HtmlHexadecimal
뎦
Url
%EB%8E%A6

Code

MD5
5cb30176c2e3ddb470d0bc437a1aad75
Sha1
027b59900214839a7f25d884dd6a765ecd79bcc9
Base64
646m

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uB3A6';
console.log(char);  // Output: 뎦

Java:

char c = '\uB3A6';
System.out.println(c);  // Output: 뎦

JSON:

{"text": "\uB3A6"}  // Value: 뎦

Python:

char = '\uB3A6'
print(char)  # Output: 뎦

Perl:

my $char = "\x{B3A6}";
print $char;  # Output: 뎦

PHP:

$char = "\x{B3A6}";
echo $char;  // Output: 뎦

Ruby:

char = "\u{B3A6}"
puts char  # Output: 뎦

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#45990;</p>  <!-- Display: 뎦 -->

HTML Hexadecimal:

<p>HTML hex: &#xB3A6;</p>  <!-- Display: 뎦 -->

URL Encoding:

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

Encodings

MD5:

5cb30176c2e3ddb470d0bc437a1aad75

SHA1:

027b59900214839a7f25d884dd6a765ecd79bcc9

Base64:

646m