C:
char c = '\uB2D3';
printf("%c\n", c); // Output: 닓
JavaScript:
const char = '\uB2D3';
console.log(char); // Output: 닓
Java:
char c = '\uB2D3';
System.out.println(c); // Output: 닓
JSON:
{"text": "\uB2D3"} // Value: 닓
Python:
char = '\uB2D3'
print(char) # Output: 닓
Perl:
my $char = "\x{B2D3}";
print $char; # Output: 닓
PHP:
$char = "\x{B2D3}";
echo $char; // Output: 닓
Ruby:
char = "\u{B2D3}"
puts char # Output: 닓
Rust:
let c = '\u{B2D3}';
println!("{}", c); // Output: 닓
Go:
char := '\uB2D3'
fmt.Printf("%c\n", char) // Output: 닓
CSS:
/* CSS content property */
.element::before {
content: "\00B2D3"; /* 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%8B%93
MD5:
b3d020216ed5ad2998d78a9e61faa1e4
SHA1:
1a567fda340b13041be16e4bb168b61ef81232a2
Base64:
64uT