Unicode Finder

"년" U+B144(HANGUL SYLLABLE NYEON)

U+B144
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE NYEON

Programming

C
\uB144
JavaScript
\uB144
Java
\uB144
Json
\uB144
Python
\uB144
Perl
\x{B144}
PHP
\x{B144}
Ruby
\u{B144}
Rust
\u{B144}
Go
\uB144

Web

CSS
\00B144
HtmlDecimal
년
HtmlHexadecimal
년
Url
%EB%85%84

Code

MD5
e29d2cd08b0cb56d496ffc78b5cc96ce
Sha1
cdb4230f4113f489cae1b4786321a152a77b76bc
Base64
64WE

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uB144';
console.log(char);  // Output: 년

Java:

char c = '\uB144';
System.out.println(c);  // Output: 년

JSON:

{"text": "\uB144"}  // Value: 년

Python:

char = '\uB144'
print(char)  # Output: 년

Perl:

my $char = "\x{B144}";
print $char;  # Output: 년

PHP:

$char = "\x{B144}";
echo $char;  // Output: 년

Ruby:

char = "\u{B144}"
puts char  # Output: 년

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#45380;</p>  <!-- Display: 년 -->

HTML Hexadecimal:

<p>HTML hex: &#xB144;</p>  <!-- Display: 년 -->

URL Encoding:

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

Encodings

MD5:

e29d2cd08b0cb56d496ffc78b5cc96ce

SHA1:

cdb4230f4113f489cae1b4786321a152a77b76bc

Base64:

64WE