C:
char c = '\uB149';
printf("%c\n", c); // Output: 녉
JavaScript:
const char = '\uB149';
console.log(char); // Output: 녉
Java:
char c = '\uB149';
System.out.println(c); // Output: 녉
JSON:
{"text": "\uB149"} // Value: 녉
Python:
char = '\uB149'
print(char) # Output: 녉
Perl:
my $char = "\x{B149}";
print $char; # Output: 녉
PHP:
$char = "\x{B149}";
echo $char; // Output: 녉
Ruby:
char = "\u{B149}"
puts char # Output: 녉
Rust:
let c = '\u{B149}';
println!("{}", c); // Output: 녉
Go:
char := '\uB149'
fmt.Printf("%c\n", char) // Output: 녉
CSS:
/* CSS content property */
.element::before {
content: "\00B149"; /* 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%89
MD5:
55d6b3f6ba1fed06958bc7ca4f6455fd
SHA1:
945b1f624d98cc23bae565e95f7d31349d6b187d
Base64:
64WJ