Unicode Finder

"뼑" U+BF11(HANGUL SYLLABLE BBYEOLG)

U+BF11
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE BBYEOLG

Programming

C
\uBF11
JavaScript
\uBF11
Java
\uBF11
Json
\uBF11
Python
\uBF11
Perl
\x{BF11}
PHP
\x{BF11}
Ruby
\u{BF11}
Rust
\u{BF11}
Go
\uBF11

Web

CSS
\00BF11
HtmlDecimal
뼑
HtmlHexadecimal
뼑
Url
%EB%BC%91

Code

MD5
c932e6d3f55d1a679ee0d4ec63292bb4
Sha1
6711bdb34d09a7ebf479277f10b2356a55affb6e
Base64
67yR

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uBF11';
console.log(char);  // Output: 뼑

Java:

char c = '\uBF11';
System.out.println(c);  // Output: 뼑

JSON:

{"text": "\uBF11"}  // Value: 뼑

Python:

char = '\uBF11'
print(char)  # Output: 뼑

Perl:

my $char = "\x{BF11}";
print $char;  # Output: 뼑

PHP:

$char = "\x{BF11}";
echo $char;  // Output: 뼑

Ruby:

char = "\u{BF11}"
puts char  # Output: 뼑

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#48913;</p>  <!-- Display: 뼑 -->

HTML Hexadecimal:

<p>HTML hex: &#xBF11;</p>  <!-- Display: 뼑 -->

URL Encoding:

// 뼑 URL encoding
https://unicodefinder.com/search.php?query=%EB%BC%91

Encodings

MD5:

c932e6d3f55d1a679ee0d4ec63292bb4

SHA1:

6711bdb34d09a7ebf479277f10b2356a55affb6e

Base64:

67yR