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