Unicode Finder

"뛍" U+B6CD(HANGUL SYLLABLE DDWEONG)

U+B6CD
ブロック名
Hangul Syllables
名前
HANGUL SYLLABLE DDWEONG

Programming

C
\uB6CD
JavaScript
\uB6CD
Java
\uB6CD
Json
\uB6CD
Python
\uB6CD
Perl
\x{B6CD}
PHP
\x{B6CD}
Ruby
\u{B6CD}
Rust
\u{B6CD}
Go
\uB6CD

Web

CSS
\00B6CD
HtmlDecimal
뛍
HtmlHexadecimal
뛍
Url
%EB%9B%8D

Code

MD5
90d075b14c82edc244a2608e39aa7ff2
Sha1
08c016d5d361ac3182bd34df73d2294e9f83eba7
Base64
65uN

使用例

Programming Languages

C:

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

JavaScript:

const char = '\uB6CD';
console.log(char);  // Output: 뛍

Java:

char c = '\uB6CD';
System.out.println(c);  // Output: 뛍

JSON:

{"text": "\uB6CD"}  // Value: 뛍

Python:

char = '\uB6CD'
print(char)  # Output: 뛍

Perl:

my $char = "\x{B6CD}";
print $char;  # Output: 뛍

PHP:

$char = "\x{B6CD}";
echo $char;  // Output: 뛍

Ruby:

char = "\u{B6CD}"
puts char  # Output: 뛍

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#46797;</p>  <!-- Display: 뛍 -->

HTML Hexadecimal:

<p>HTML hex: &#xB6CD;</p>  <!-- Display: 뛍 -->

URL Encoding:

// 뛍 URL encoding
https://unicodefinder.com/search.php?query=%EB%9B%8D

Encodings

MD5:

90d075b14c82edc244a2608e39aa7ff2

SHA1:

08c016d5d361ac3182bd34df73d2294e9f83eba7

Base64:

65uN