C:
char c = '\uB315';
printf("%c\n", c); // Output: 댕
JavaScript:
const char = '\uB315';
console.log(char); // Output: 댕
Java:
char c = '\uB315';
System.out.println(c); // Output: 댕
JSON:
{"text": "\uB315"} // Value: 댕
Python:
char = '\uB315'
print(char) # Output: 댕
Perl:
my $char = "\x{B315}";
print $char; # Output: 댕
PHP:
$char = "\x{B315}";
echo $char; // Output: 댕
Ruby:
char = "\u{B315}"
puts char # Output: 댕
Rust:
let c = '\u{B315}';
println!("{}", c); // Output: 댕
Go:
char := '\uB315'
fmt.Printf("%c\n", char) // Output: 댕
CSS:
/* CSS content property */
.element::before {
content: "\00B315"; /* 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%8C%95
MD5:
52c7acbae9c0b647269de1d23f6bf11a
SHA1:
1758ed84ed8656a42d0ef0c429c93babfcf218bd
Base64:
64yV