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