Unicode Finder

"뿮" U+BFEE(HANGUL SYLLABLE BBWEONH)

U+BFEE
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE BBWEONH

Programming

C
\uBFEE
JavaScript
\uBFEE
Java
\uBFEE
Json
\uBFEE
Python
\uBFEE
Perl
\x{BFEE}
PHP
\x{BFEE}
Ruby
\u{BFEE}
Rust
\u{BFEE}
Go
\uBFEE

Web

CSS
\00BFEE
HtmlDecimal
뿮
HtmlHexadecimal
뿮
Url
%EB%BF%AE

Code

MD5
22b925cf1d793e74c2e02fde9d4c4026
Sha1
ddbfc4aebeb17a09c93f850b201da2fc603c0434
Base64
67+u

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uBFEE';
console.log(char);  // Output: 뿮

Java:

char c = '\uBFEE';
System.out.println(c);  // Output: 뿮

JSON:

{"text": "\uBFEE"}  // Value: 뿮

Python:

char = '\uBFEE'
print(char)  # Output: 뿮

Perl:

my $char = "\x{BFEE}";
print $char;  # Output: 뿮

PHP:

$char = "\x{BFEE}";
echo $char;  // Output: 뿮

Ruby:

char = "\u{BFEE}"
puts char  # Output: 뿮

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#49134;</p>  <!-- Display: 뿮 -->

HTML Hexadecimal:

<p>HTML hex: &#xBFEE;</p>  <!-- Display: 뿮 -->

URL Encoding:

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

Encodings

MD5:

22b925cf1d793e74c2e02fde9d4c4026

SHA1:

ddbfc4aebeb17a09c93f850b201da2fc603c0434

Base64:

67+u