Unicode Finder

"뎟" U+B39F(HANGUL SYLLABLE DYEOS)

U+B39F
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE DYEOS

Programming

C
\uB39F
JavaScript
\uB39F
Java
\uB39F
Json
\uB39F
Python
\uB39F
Perl
\x{B39F}
PHP
\x{B39F}
Ruby
\u{B39F}
Rust
\u{B39F}
Go
\uB39F

Web

CSS
\00B39F
HtmlDecimal
뎟
HtmlHexadecimal
뎟
Url
%EB%8E%9F

Code

MD5
097af44b2aaf528252a61b14417c403e
Sha1
1c585f2505184ce0d3272a9f6592ac07719dc0c1
Base64
646f

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uB39F';
console.log(char);  // Output: 뎟

Java:

char c = '\uB39F';
System.out.println(c);  // Output: 뎟

JSON:

{"text": "\uB39F"}  // Value: 뎟

Python:

char = '\uB39F'
print(char)  # Output: 뎟

Perl:

my $char = "\x{B39F}";
print $char;  # Output: 뎟

PHP:

$char = "\x{B39F}";
echo $char;  // Output: 뎟

Ruby:

char = "\u{B39F}"
puts char  # Output: 뎟

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#45983;</p>  <!-- Display: 뎟 -->

HTML Hexadecimal:

<p>HTML hex: &#xB39F;</p>  <!-- Display: 뎟 -->

URL Encoding:

// 뎟 URL encoding
https://unicodefinder.com/search.php?query=%EB%8E%9F

Encodings

MD5:

097af44b2aaf528252a61b14417c403e

SHA1:

1c585f2505184ce0d3272a9f6592ac07719dc0c1

Base64:

646f