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