Unicode Finder

"뿺" U+BFFA(HANGUL SYLLABLE BBWEOBS)

U+BFFA
ブロック名
Hangul Syllables
名前
HANGUL SYLLABLE BBWEOBS

Programming

C
\uBFFA
JavaScript
\uBFFA
Java
\uBFFA
Json
\uBFFA
Python
\uBFFA
Perl
\x{BFFA}
PHP
\x{BFFA}
Ruby
\u{BFFA}
Rust
\u{BFFA}
Go
\uBFFA

Web

CSS
\00BFFA
HtmlDecimal
뿺
HtmlHexadecimal
뿺
Url
%EB%BF%BA

Code

MD5
4eb907b95d9df959392ecc4f3cb7b070
Sha1
09dc28ade3599fd95c8d082f8a48c6488c4c90ff
Base64
67+6

使用例

Programming Languages

C:

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

JavaScript:

const char = '\uBFFA';
console.log(char);  // Output: 뿺

Java:

char c = '\uBFFA';
System.out.println(c);  // Output: 뿺

JSON:

{"text": "\uBFFA"}  // Value: 뿺

Python:

char = '\uBFFA'
print(char)  # Output: 뿺

Perl:

my $char = "\x{BFFA}";
print $char;  # Output: 뿺

PHP:

$char = "\x{BFFA}";
echo $char;  // Output: 뿺

Ruby:

char = "\u{BFFA}"
puts char  # Output: 뿺

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#49146;</p>  <!-- Display: 뿺 -->

HTML Hexadecimal:

<p>HTML hex: &#xBFFA;</p>  <!-- Display: 뿺 -->

URL Encoding:

// 뿺 URL encoding
https://unicodefinder.com/search.php?query=%EB%BF%BA

Encodings

MD5:

4eb907b95d9df959392ecc4f3cb7b070

SHA1:

09dc28ade3599fd95c8d082f8a48c6488c4c90ff

Base64:

67+6