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