Unicode Finder

"볼" U+BCFC(HANGUL SYLLABLE BOL)

U+BCFC
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE BOL

Programming

C
\uBCFC
JavaScript
\uBCFC
Java
\uBCFC
Json
\uBCFC
Python
\uBCFC
Perl
\x{BCFC}
PHP
\x{BCFC}
Ruby
\u{BCFC}
Rust
\u{BCFC}
Go
\uBCFC

Web

CSS
\00BCFC
HtmlDecimal
볼
HtmlHexadecimal
볼
Url
%EB%B3%BC

Code

MD5
ac22b04fed7838f497855f4434393cf6
Sha1
c72996aa45da0f03b60560b5deae45b79e004e01
Base64
67O8

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uBCFC';
console.log(char);  // Output: 볼

Java:

char c = '\uBCFC';
System.out.println(c);  // Output: 볼

JSON:

{"text": "\uBCFC"}  // Value: 볼

Python:

char = '\uBCFC'
print(char)  # Output: 볼

Perl:

my $char = "\x{BCFC}";
print $char;  # Output: 볼

PHP:

$char = "\x{BCFC}";
echo $char;  // Output: 볼

Ruby:

char = "\u{BCFC}"
puts char  # Output: 볼

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#48380;</p>  <!-- Display: 볼 -->

HTML Hexadecimal:

<p>HTML hex: &#xBCFC;</p>  <!-- Display: 볼 -->

URL Encoding:

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

Encodings

MD5:

ac22b04fed7838f497855f4434393cf6

SHA1:

c72996aa45da0f03b60560b5deae45b79e004e01

Base64:

67O8