Unicode Finder

"뻓" U+BED3(HANGUL SYLLABLE BBEOGS)

U+BED3
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE BBEOGS

Programming

C
\uBED3
JavaScript
\uBED3
Java
\uBED3
Json
\uBED3
Python
\uBED3
Perl
\x{BED3}
PHP
\x{BED3}
Ruby
\u{BED3}
Rust
\u{BED3}
Go
\uBED3

Web

CSS
\00BED3
HtmlDecimal
뻓
HtmlHexadecimal
뻓
Url
%EB%BB%93

Code

MD5
cb3a840cb38dddbd3a8d389caa4edeea
Sha1
8c5fff562cd5a9da96ee4e5e04d10d98b2b0088f
Base64
67uT

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uBED3';
console.log(char);  // Output: 뻓

Java:

char c = '\uBED3';
System.out.println(c);  // Output: 뻓

JSON:

{"text": "\uBED3"}  // Value: 뻓

Python:

char = '\uBED3'
print(char)  # Output: 뻓

Perl:

my $char = "\x{BED3}";
print $char;  # Output: 뻓

PHP:

$char = "\x{BED3}";
echo $char;  // Output: 뻓

Ruby:

char = "\u{BED3}"
puts char  # Output: 뻓

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#48851;</p>  <!-- Display: 뻓 -->

HTML Hexadecimal:

<p>HTML hex: &#xBED3;</p>  <!-- Display: 뻓 -->

URL Encoding:

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

Encodings

MD5:

cb3a840cb38dddbd3a8d389caa4edeea

SHA1:

8c5fff562cd5a9da96ee4e5e04d10d98b2b0088f

Base64:

67uT