C:
char c = '\uB224';
printf("%c\n", c); // Output: 눤
JavaScript:
const char = '\uB224';
console.log(char); // Output: 눤
Java:
char c = '\uB224';
System.out.println(c); // Output: 눤
JSON:
{"text": "\uB224"} // Value: 눤
Python:
char = '\uB224'
print(char) # Output: 눤
Perl:
my $char = "\x{B224}";
print $char; # Output: 눤
PHP:
$char = "\x{B224}";
echo $char; // Output: 눤
Ruby:
char = "\u{B224}"
puts char # Output: 눤
Rust:
let c = '\u{B224}';
println!("{}", c); // Output: 눤
Go:
char := '\uB224'
fmt.Printf("%c\n", char) // Output: 눤
CSS:
/* CSS content property */
.element::before {
content: "\00B224"; /* 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%88%A4
MD5:
0896e9165ba1502637d5ed8ab31de786
SHA1:
651531352c3b07ca3b829c53968e37cbf7913df2
Base64:
64ik