Unicode Finder

"뻙" U+BED9(HANGUL SYLLABLE BBEOLG)

U+BED9
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE BBEOLG

Programming

C
\uBED9
JavaScript
\uBED9
Java
\uBED9
Json
\uBED9
Python
\uBED9
Perl
\x{BED9}
PHP
\x{BED9}
Ruby
\u{BED9}
Rust
\u{BED9}
Go
\uBED9

Web

CSS
\00BED9
HtmlDecimal
뻙
HtmlHexadecimal
뻙
Url
%EB%BB%99

Code

MD5
9e92444145510637f10765472716816d
Sha1
1dbca103455163e8d87c3f2660d8473b33ae033e
Base64
67uZ

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uBED9';
console.log(char);  // Output: 뻙

Java:

char c = '\uBED9';
System.out.println(c);  // Output: 뻙

JSON:

{"text": "\uBED9"}  // Value: 뻙

Python:

char = '\uBED9'
print(char)  # Output: 뻙

Perl:

my $char = "\x{BED9}";
print $char;  # Output: 뻙

PHP:

$char = "\x{BED9}";
echo $char;  // Output: 뻙

Ruby:

char = "\u{BED9}"
puts char  # Output: 뻙

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#48857;</p>  <!-- Display: 뻙 -->

HTML Hexadecimal:

<p>HTML hex: &#xBED9;</p>  <!-- Display: 뻙 -->

URL Encoding:

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

Encodings

MD5:

9e92444145510637f10765472716816d

SHA1:

1dbca103455163e8d87c3f2660d8473b33ae033e

Base64:

67uZ