Unicode Finder

"뚑" U+B691(HANGUL SYLLABLE DDYOB)

U+B691
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE DDYOB

Programming

C
\uB691
JavaScript
\uB691
Java
\uB691
Json
\uB691
Python
\uB691
Perl
\x{B691}
PHP
\x{B691}
Ruby
\u{B691}
Rust
\u{B691}
Go
\uB691

Web

CSS
\00B691
HtmlDecimal
뚑
HtmlHexadecimal
뚑
Url
%EB%9A%91

Code

MD5
9200f252008c0b194b3d1ccbcac5254e
Sha1
432ea8099e81edf6c8a7c5dc0ef697893edd0827
Base64
65qR

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uB691';
console.log(char);  // Output: 뚑

Java:

char c = '\uB691';
System.out.println(c);  // Output: 뚑

JSON:

{"text": "\uB691"}  // Value: 뚑

Python:

char = '\uB691'
print(char)  # Output: 뚑

Perl:

my $char = "\x{B691}";
print $char;  # Output: 뚑

PHP:

$char = "\x{B691}";
echo $char;  // Output: 뚑

Ruby:

char = "\u{B691}"
puts char  # Output: 뚑

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#46737;</p>  <!-- Display: 뚑 -->

HTML Hexadecimal:

<p>HTML hex: &#xB691;</p>  <!-- Display: 뚑 -->

URL Encoding:

// 뚑 URL encoding
https://unicodefinder.com/search.php?query=%EB%9A%91

Encodings

MD5:

9200f252008c0b194b3d1ccbcac5254e

SHA1:

432ea8099e81edf6c8a7c5dc0ef697893edd0827

Base64:

65qR