Unicode Finder

"눼" U+B23C(HANGUL SYLLABLE NWE)

U+B23C
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE NWE

Programming

C
\uB23C
JavaScript
\uB23C
Java
\uB23C
Json
\uB23C
Python
\uB23C
Perl
\x{B23C}
PHP
\x{B23C}
Ruby
\u{B23C}
Rust
\u{B23C}
Go
\uB23C

Web

CSS
\00B23C
HtmlDecimal
눼
HtmlHexadecimal
눼
Url
%EB%88%BC

Code

MD5
462562cc3eb9e2d99ae26ea54025267f
Sha1
fb2b712850338ed6ef427ffd6e8baa7c4db6db5b
Base64
64i8

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uB23C';
console.log(char);  // Output: 눼

Java:

char c = '\uB23C';
System.out.println(c);  // Output: 눼

JSON:

{"text": "\uB23C"}  // Value: 눼

Python:

char = '\uB23C'
print(char)  # Output: 눼

Perl:

my $char = "\x{B23C}";
print $char;  # Output: 눼

PHP:

$char = "\x{B23C}";
echo $char;  // Output: 눼

Ruby:

char = "\u{B23C}"
puts char  # Output: 눼

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#45628;</p>  <!-- Display: 눼 -->

HTML Hexadecimal:

<p>HTML hex: &#xB23C;</p>  <!-- Display: 눼 -->

URL Encoding:

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

Encodings

MD5:

462562cc3eb9e2d99ae26ea54025267f

SHA1:

fb2b712850338ed6ef427ffd6e8baa7c4db6db5b

Base64:

64i8