Unicode Finder

"뻖" U+BED6(HANGUL SYLLABLE BBEONH)

U+BED6
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE BBEONH

Programming

C
\uBED6
JavaScript
\uBED6
Java
\uBED6
Json
\uBED6
Python
\uBED6
Perl
\x{BED6}
PHP
\x{BED6}
Ruby
\u{BED6}
Rust
\u{BED6}
Go
\uBED6

Web

CSS
\00BED6
HtmlDecimal
뻖
HtmlHexadecimal
뻖
Url
%EB%BB%96

Code

MD5
29ac0cbb3e8db5bd0c3382aa7083bd4a
Sha1
1b1a52896ba72929f615d29639bee1cb3e5209dc
Base64
67uW

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uBED6';
console.log(char);  // Output: 뻖

Java:

char c = '\uBED6';
System.out.println(c);  // Output: 뻖

JSON:

{"text": "\uBED6"}  // Value: 뻖

Python:

char = '\uBED6'
print(char)  # Output: 뻖

Perl:

my $char = "\x{BED6}";
print $char;  # Output: 뻖

PHP:

$char = "\x{BED6}";
echo $char;  // Output: 뻖

Ruby:

char = "\u{BED6}"
puts char  # Output: 뻖

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#48854;</p>  <!-- Display: 뻖 -->

HTML Hexadecimal:

<p>HTML hex: &#xBED6;</p>  <!-- Display: 뻖 -->

URL Encoding:

// 뻖 URL encoding
https://unicodefinder.com/search.php?query=%EB%BB%96

Encodings

MD5:

29ac0cbb3e8db5bd0c3382aa7083bd4a

SHA1:

1b1a52896ba72929f615d29639bee1cb3e5209dc

Base64:

67uW