Unicode Finder

"뼣" U+BF23(HANGUL SYLLABLE BBYEOH)

U+BF23
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE BBYEOH

Programming

C
\uBF23
JavaScript
\uBF23
Java
\uBF23
Json
\uBF23
Python
\uBF23
Perl
\x{BF23}
PHP
\x{BF23}
Ruby
\u{BF23}
Rust
\u{BF23}
Go
\uBF23

Web

CSS
\00BF23
HtmlDecimal
뼣
HtmlHexadecimal
뼣
Url
%EB%BC%A3

Code

MD5
6ab6a72ff88c7976016e29e5a2fd0d96
Sha1
5e256db2f13acfe135e93c09208331250814ec06
Base64
67yj

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uBF23';
console.log(char);  // Output: 뼣

Java:

char c = '\uBF23';
System.out.println(c);  // Output: 뼣

JSON:

{"text": "\uBF23"}  // Value: 뼣

Python:

char = '\uBF23'
print(char)  # Output: 뼣

Perl:

my $char = "\x{BF23}";
print $char;  # Output: 뼣

PHP:

$char = "\x{BF23}";
echo $char;  // Output: 뼣

Ruby:

char = "\u{BF23}"
puts char  # Output: 뼣

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#48931;</p>  <!-- Display: 뼣 -->

HTML Hexadecimal:

<p>HTML hex: &#xBF23;</p>  <!-- Display: 뼣 -->

URL Encoding:

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

Encodings

MD5:

6ab6a72ff88c7976016e29e5a2fd0d96

SHA1:

5e256db2f13acfe135e93c09208331250814ec06

Base64:

67yj