Unicode Finder

"뙯" U+B66F(HANGUL SYLLABLE DDOELB)

U+B66F
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE DDOELB

Programming

C
\uB66F
JavaScript
\uB66F
Java
\uB66F
Json
\uB66F
Python
\uB66F
Perl
\x{B66F}
PHP
\x{B66F}
Ruby
\u{B66F}
Rust
\u{B66F}
Go
\uB66F

Web

CSS
\00B66F
HtmlDecimal
뙯
HtmlHexadecimal
뙯
Url
%EB%99%AF

Code

MD5
e21b3664cc2f14439b14920c79009da7
Sha1
f4c2b028a94960aa5bf4fc45b12a63d285573df0
Base64
65mv

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uB66F';
console.log(char);  // Output: 뙯

Java:

char c = '\uB66F';
System.out.println(c);  // Output: 뙯

JSON:

{"text": "\uB66F"}  // Value: 뙯

Python:

char = '\uB66F'
print(char)  # Output: 뙯

Perl:

my $char = "\x{B66F}";
print $char;  # Output: 뙯

PHP:

$char = "\x{B66F}";
echo $char;  // Output: 뙯

Ruby:

char = "\u{B66F}"
puts char  # Output: 뙯

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#46703;</p>  <!-- Display: 뙯 -->

HTML Hexadecimal:

<p>HTML hex: &#xB66F;</p>  <!-- Display: 뙯 -->

URL Encoding:

// 뙯 URL encoding
https://unicodefinder.com/search.php?query=%EB%99%AF

Encodings

MD5:

e21b3664cc2f14439b14920c79009da7

SHA1:

f4c2b028a94960aa5bf4fc45b12a63d285573df0

Base64:

65mv