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