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