C:
char c = '\uB6A0';
printf("%c\n", c); // Output: 뚠
JavaScript:
const char = '\uB6A0';
console.log(char); // Output: 뚠
Java:
char c = '\uB6A0';
System.out.println(c); // Output: 뚠
JSON:
{"text": "\uB6A0"} // Value: 뚠
Python:
char = '\uB6A0'
print(char) # Output: 뚠
Perl:
my $char = "\x{B6A0}";
print $char; # Output: 뚠
PHP:
$char = "\x{B6A0}";
echo $char; // Output: 뚠
Ruby:
char = "\u{B6A0}"
puts char # Output: 뚠
Rust:
let c = '\u{B6A0}';
println!("{}", c); // Output: 뚠
Go:
char := '\uB6A0'
fmt.Printf("%c\n", char) // Output: 뚠
CSS:
/* CSS content property */
.element::before {
content: "\00B6A0"; /* 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%9A%A0
MD5:
96c12a0d226feb6b0c310907ea5244e3
SHA1:
af14d59476fea6d1fab92e944644eb4dd1e33676
Base64:
65qg