Unicode Finder

"뛵" U+B6F5(HANGUL SYLLABLE DDWINJ)

U+B6F5
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE DDWINJ

Programming

C
\uB6F5
JavaScript
\uB6F5
Java
\uB6F5
Json
\uB6F5
Python
\uB6F5
Perl
\x{B6F5}
PHP
\x{B6F5}
Ruby
\u{B6F5}
Rust
\u{B6F5}
Go
\uB6F5

Web

CSS
\00B6F5
HtmlDecimal
뛵
HtmlHexadecimal
뛵
Url
%EB%9B%B5

Code

MD5
7df65ecc859d5deb66b53867961c4c6d
Sha1
bc8f36c589baaea8b41de16da2844a581abd2d64
Base64
65u1

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uB6F5';
console.log(char);  // Output: 뛵

Java:

char c = '\uB6F5';
System.out.println(c);  // Output: 뛵

JSON:

{"text": "\uB6F5"}  // Value: 뛵

Python:

char = '\uB6F5'
print(char)  # Output: 뛵

Perl:

my $char = "\x{B6F5}";
print $char;  # Output: 뛵

PHP:

$char = "\x{B6F5}";
echo $char;  // Output: 뛵

Ruby:

char = "\u{B6F5}"
puts char  # Output: 뛵

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#46837;</p>  <!-- Display: 뛵 -->

HTML Hexadecimal:

<p>HTML hex: &#xB6F5;</p>  <!-- Display: 뛵 -->

URL Encoding:

// 뛵 URL encoding
https://unicodefinder.com/search.php?query=%EB%9B%B5

Encodings

MD5:

7df65ecc859d5deb66b53867961c4c6d

SHA1:

bc8f36c589baaea8b41de16da2844a581abd2d64

Base64:

65u1