C:
char c = '\uB310';
printf("%c\n", c); // Output: 댐
JavaScript:
const char = '\uB310';
console.log(char); // Output: 댐
Java:
char c = '\uB310';
System.out.println(c); // Output: 댐
JSON:
{"text": "\uB310"} // Value: 댐
Python:
char = '\uB310'
print(char) # Output: 댐
Perl:
my $char = "\x{B310}";
print $char; # Output: 댐
PHP:
$char = "\x{B310}";
echo $char; // Output: 댐
Ruby:
char = "\u{B310}"
puts char # Output: 댐
Rust:
let c = '\u{B310}';
println!("{}", c); // Output: 댐
Go:
char := '\uB310'
fmt.Printf("%c\n", char) // Output: 댐
CSS:
/* CSS content property */
.element::before {
content: "\00B310"; /* 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%90
MD5:
cd8ea991713e455d1cf2032b34614de8
SHA1:
0b4a560fdca08480d19061a6340bdde30e3ed0a6
Base64:
64yQ