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