Unicode Finder

"믿" U+BBFF(HANGUL SYLLABLE MID)

믿
U+BBFF
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE MID

Programming

C
\uBBFF
JavaScript
\uBBFF
Java
\uBBFF
Json
\uBBFF
Python
\uBBFF
Perl
\x{BBFF}
PHP
\x{BBFF}
Ruby
\u{BBFF}
Rust
\u{BBFF}
Go
\uBBFF

Web

CSS
\00BBFF
HtmlDecimal
믿
HtmlHexadecimal
믿
Url
%EB%AF%BF

Code

MD5
cd8950e897b6c5ff47980fa7ce145613
Sha1
dd6c64122f9bd0451b1295104ffc64ffb61ee583
Base64
66+/

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uBBFF';
console.log(char);  // Output: 믿

Java:

char c = '\uBBFF';
System.out.println(c);  // Output: 믿

JSON:

{"text": "\uBBFF"}  // Value: 믿

Python:

char = '\uBBFF'
print(char)  # Output: 믿

Perl:

my $char = "\x{BBFF}";
print $char;  # Output: 믿

PHP:

$char = "\x{BBFF}";
echo $char;  // Output: 믿

Ruby:

char = "\u{BBFF}"
puts char  # Output: 믿

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#48127;</p>  <!-- Display: 믿 -->

HTML Hexadecimal:

<p>HTML hex: &#xBBFF;</p>  <!-- Display: 믿 -->

URL Encoding:

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

Encodings

MD5:

cd8950e897b6c5ff47980fa7ce145613

SHA1:

dd6c64122f9bd0451b1295104ffc64ffb61ee583

Base64:

66+/