Unicode Finder

"빵" U+BE75(HANGUL SYLLABLE BBANG)

U+BE75
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE BBANG

Programming

C
\uBE75
JavaScript
\uBE75
Java
\uBE75
Json
\uBE75
Python
\uBE75
Perl
\x{BE75}
PHP
\x{BE75}
Ruby
\u{BE75}
Rust
\u{BE75}
Go
\uBE75

Web

CSS
\00BE75
HtmlDecimal
빵
HtmlHexadecimal
빵
Url
%EB%B9%B5

Code

MD5
c05823f6c0abd40ddec03dc360cb163f
Sha1
57407f69ace15b91d24217265ef111b5bccf0d23
Base64
67m1

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uBE75';
console.log(char);  // Output: 빵

Java:

char c = '\uBE75';
System.out.println(c);  // Output: 빵

JSON:

{"text": "\uBE75"}  // Value: 빵

Python:

char = '\uBE75'
print(char)  # Output: 빵

Perl:

my $char = "\x{BE75}";
print $char;  # Output: 빵

PHP:

$char = "\x{BE75}";
echo $char;  // Output: 빵

Ruby:

char = "\u{BE75}"
puts char  # Output: 빵

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#48757;</p>  <!-- Display: 빵 -->

HTML Hexadecimal:

<p>HTML hex: &#xBE75;</p>  <!-- Display: 빵 -->

URL Encoding:

// 빵 URL encoding
https://unicodefinder.com/search.php?query=%EB%B9%B5

Encodings

MD5:

c05823f6c0abd40ddec03dc360cb163f

SHA1:

57407f69ace15b91d24217265ef111b5bccf0d23

Base64:

67m1