Unicode Finder

"범" U+BC94(HANGUL SYLLABLE BEOM)

U+BC94
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE BEOM

Programming

C
\uBC94
JavaScript
\uBC94
Java
\uBC94
Json
\uBC94
Python
\uBC94
Perl
\x{BC94}
PHP
\x{BC94}
Ruby
\u{BC94}
Rust
\u{BC94}
Go
\uBC94

Web

CSS
\00BC94
HtmlDecimal
범
HtmlHexadecimal
범
Url
%EB%B2%94

Code

MD5
14bf8fe2d5605fb77e085715aa224924
Sha1
0b96db5697691f7aa1420adf6c21ec53fa9d7026
Base64
67KU

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uBC94';
console.log(char);  // Output: 범

Java:

char c = '\uBC94';
System.out.println(c);  // Output: 범

JSON:

{"text": "\uBC94"}  // Value: 범

Python:

char = '\uBC94'
print(char)  # Output: 범

Perl:

my $char = "\x{BC94}";
print $char;  # Output: 범

PHP:

$char = "\x{BC94}";
echo $char;  // Output: 범

Ruby:

char = "\u{BC94}"
puts char  # Output: 범

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#48276;</p>  <!-- Display: 범 -->

HTML Hexadecimal:

<p>HTML hex: &#xBC94;</p>  <!-- Display: 범 -->

URL Encoding:

// 범 URL encoding
https://unicodefinder.com/search.php?query=%EB%B2%94

Encodings

MD5:

14bf8fe2d5605fb77e085715aa224924

SHA1:

0b96db5697691f7aa1420adf6c21ec53fa9d7026

Base64:

67KU