Unicode Finder

"뽄" U+BF44(HANGUL SYLLABLE BBON)

U+BF44
ブロック名
Hangul Syllables
名前
HANGUL SYLLABLE BBON

Programming

C
\uBF44
JavaScript
\uBF44
Java
\uBF44
Json
\uBF44
Python
\uBF44
Perl
\x{BF44}
PHP
\x{BF44}
Ruby
\u{BF44}
Rust
\u{BF44}
Go
\uBF44

Web

CSS
\00BF44
HtmlDecimal
뽄
HtmlHexadecimal
뽄
Url
%EB%BD%84

Code

MD5
24303872d7ff9f9ac3de901dca0c0985
Sha1
e653ba1f7a6a43e26b406451ed5c093fbf69ba3e
Base64
672E

使用例

Programming Languages

C:

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

JavaScript:

const char = '\uBF44';
console.log(char);  // Output: 뽄

Java:

char c = '\uBF44';
System.out.println(c);  // Output: 뽄

JSON:

{"text": "\uBF44"}  // Value: 뽄

Python:

char = '\uBF44'
print(char)  # Output: 뽄

Perl:

my $char = "\x{BF44}";
print $char;  # Output: 뽄

PHP:

$char = "\x{BF44}";
echo $char;  // Output: 뽄

Ruby:

char = "\u{BF44}"
puts char  # Output: 뽄

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#48964;</p>  <!-- Display: 뽄 -->

HTML Hexadecimal:

<p>HTML hex: &#xBF44;</p>  <!-- Display: 뽄 -->

URL Encoding:

// 뽄 URL encoding
https://unicodefinder.com/search.php?query=%EB%BD%84

Encodings

MD5:

24303872d7ff9f9ac3de901dca0c0985

SHA1:

e653ba1f7a6a43e26b406451ed5c093fbf69ba3e

Base64:

672E