C:
char c = '\uB298';
printf("%c\n", c); // Output: 늘
JavaScript:
const char = '\uB298';
console.log(char); // Output: 늘
Java:
char c = '\uB298';
System.out.println(c); // Output: 늘
JSON:
{"text": "\uB298"} // Value: 늘
Python:
char = '\uB298'
print(char) # Output: 늘
Perl:
my $char = "\x{B298}";
print $char; # Output: 늘
PHP:
$char = "\x{B298}";
echo $char; // Output: 늘
Ruby:
char = "\u{B298}"
puts char # Output: 늘
Rust:
let c = '\u{B298}';
println!("{}", c); // Output: 늘
Go:
char := '\uB298'
fmt.Printf("%c\n", char) // Output: 늘
CSS:
/* CSS content property */
.element::before {
content: "\00B298"; /* 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%8A%98
MD5:
33ff20eb0fc3d7f76bcbe8282e0e5aed
SHA1:
771776a97846a66c333f7e2a2a3e737673784726
Base64:
64qY