Unicode Finder

"뻅" U+BEC5(HANGUL SYLLABLE BBYAEB)

U+BEC5
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE BBYAEB

Programming

C
\uBEC5
JavaScript
\uBEC5
Java
\uBEC5
Json
\uBEC5
Python
\uBEC5
Perl
\x{BEC5}
PHP
\x{BEC5}
Ruby
\u{BEC5}
Rust
\u{BEC5}
Go
\uBEC5

Web

CSS
\00BEC5
HtmlDecimal
뻅
HtmlHexadecimal
뻅
Url
%EB%BB%85

Code

MD5
8779af85bda10e4d510b92ca6bb1626c
Sha1
4c49ef2d98a88c6e39bc7dd47efc4548dd04f81e
Base64
67uF

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uBEC5';
console.log(char);  // Output: 뻅

Java:

char c = '\uBEC5';
System.out.println(c);  // Output: 뻅

JSON:

{"text": "\uBEC5"}  // Value: 뻅

Python:

char = '\uBEC5'
print(char)  # Output: 뻅

Perl:

my $char = "\x{BEC5}";
print $char;  # Output: 뻅

PHP:

$char = "\x{BEC5}";
echo $char;  // Output: 뻅

Ruby:

char = "\u{BEC5}"
puts char  # Output: 뻅

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#48837;</p>  <!-- Display: 뻅 -->

HTML Hexadecimal:

<p>HTML hex: &#xBEC5;</p>  <!-- Display: 뻅 -->

URL Encoding:

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

Encodings

MD5:

8779af85bda10e4d510b92ca6bb1626c

SHA1:

4c49ef2d98a88c6e39bc7dd47efc4548dd04f81e

Base64:

67uF