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