Unicode Finder

"뻃" U+BEC3(HANGUL SYLLABLE BBYAELH)

U+BEC3
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE BBYAELH

Programming

C
\uBEC3
JavaScript
\uBEC3
Java
\uBEC3
Json
\uBEC3
Python
\uBEC3
Perl
\x{BEC3}
PHP
\x{BEC3}
Ruby
\u{BEC3}
Rust
\u{BEC3}
Go
\uBEC3

Web

CSS
\00BEC3
HtmlDecimal
뻃
HtmlHexadecimal
뻃
Url
%EB%BB%83

Code

MD5
b443ba20a9c3be2ed98c5d7fbda83db4
Sha1
2563116dd5570c96aeeb6f4f081da2e59c6c6600
Base64
67uD

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uBEC3';
console.log(char);  // Output: 뻃

Java:

char c = '\uBEC3';
System.out.println(c);  // Output: 뻃

JSON:

{"text": "\uBEC3"}  // Value: 뻃

Python:

char = '\uBEC3'
print(char)  # Output: 뻃

Perl:

my $char = "\x{BEC3}";
print $char;  # Output: 뻃

PHP:

$char = "\x{BEC3}";
echo $char;  // Output: 뻃

Ruby:

char = "\u{BEC3}"
puts char  # Output: 뻃

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#48835;</p>  <!-- Display: 뻃 -->

HTML Hexadecimal:

<p>HTML hex: &#xBEC3;</p>  <!-- Display: 뻃 -->

URL Encoding:

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

Encodings

MD5:

b443ba20a9c3be2ed98c5d7fbda83db4

SHA1:

2563116dd5570c96aeeb6f4f081da2e59c6c6600

Base64:

67uD