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