Unicode Finder

"뻒" U+BED2(HANGUL SYLLABLE BBEOGG)

U+BED2
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE BBEOGG

Programming

C
\uBED2
JavaScript
\uBED2
Java
\uBED2
Json
\uBED2
Python
\uBED2
Perl
\x{BED2}
PHP
\x{BED2}
Ruby
\u{BED2}
Rust
\u{BED2}
Go
\uBED2

Web

CSS
\00BED2
HtmlDecimal
뻒
HtmlHexadecimal
뻒
Url
%EB%BB%92

Code

MD5
b84bb499a556f1d49085f754d561aafe
Sha1
9694fe4aacba3cc7bde57ea4edeb26a4901e374f
Base64
67uS

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uBED2';
console.log(char);  // Output: 뻒

Java:

char c = '\uBED2';
System.out.println(c);  // Output: 뻒

JSON:

{"text": "\uBED2"}  // Value: 뻒

Python:

char = '\uBED2'
print(char)  # Output: 뻒

Perl:

my $char = "\x{BED2}";
print $char;  # Output: 뻒

PHP:

$char = "\x{BED2}";
echo $char;  // Output: 뻒

Ruby:

char = "\u{BED2}"
puts char  # Output: 뻒

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#48850;</p>  <!-- Display: 뻒 -->

HTML Hexadecimal:

<p>HTML hex: &#xBED2;</p>  <!-- Display: 뻒 -->

URL Encoding:

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

Encodings

MD5:

b84bb499a556f1d49085f754d561aafe

SHA1:

9694fe4aacba3cc7bde57ea4edeb26a4901e374f

Base64:

67uS