C:
char c = '\uB371';
printf("%c\n", c); // Output: 덱
JavaScript:
const char = '\uB371';
console.log(char); // Output: 덱
Java:
char c = '\uB371';
System.out.println(c); // Output: 덱
JSON:
{"text": "\uB371"} // Value: 덱
Python:
char = '\uB371'
print(char) # Output: 덱
Perl:
my $char = "\x{B371}";
print $char; # Output: 덱
PHP:
$char = "\x{B371}";
echo $char; // Output: 덱
Ruby:
char = "\u{B371}"
puts char # Output: 덱
Rust:
let c = '\u{B371}';
println!("{}", c); // Output: 덱
Go:
char := '\uB371'
fmt.Printf("%c\n", char) // Output: 덱
CSS:
/* CSS content property */
.element::before {
content: "\00B371"; /* 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%8D%B1
MD5:
9acc6dc3e0e405294e0489f03b1bb3a6
SHA1:
e8fa7791df92a22b3df53c7f1b27ca36b6df9578
Base64:
642x