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: 년
CSS:
/* CSS content property */
.element::before {
content: "\00B144"; /* Display: 년 */
}
HTML Decimal:
<p>HTML decimal: 년</p> <!-- Display: 년 -->
HTML Hexadecimal:
<p>HTML hex: 년</p> <!-- Display: 년 -->
URL Encoding:
// 년 URL encoding
https://unicodefinder.com/search.php?query=%EB%85%84
MD5:
e29d2cd08b0cb56d496ffc78b5cc96ce
SHA1:
cdb4230f4113f489cae1b4786321a152a77b76bc
Base64:
64WE