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