C:
char c = '\uD7B2';
printf("%c\n", c); // Output: ힲ
JavaScript:
const char = '\uD7B2';
console.log(char); // Output: ힲ
Java:
char c = '\uD7B2';
System.out.println(c); // Output: ힲ
JSON:
{"text": "\uD7B2"} // Value: ힲ
Python:
char = '\uD7B2'
print(char) # Output: ힲ
Perl:
my $char = "\x{D7B2}";
print $char; # Output: ힲ
PHP:
$char = "\x{D7B2}";
echo $char; // Output: ힲ
Ruby:
char = "\u{D7B2}"
puts char # Output: ힲ
Rust:
let c = '\u{D7B2}';
println!("{}", c); // Output: ힲ
Go:
char := '\uD7B2'
fmt.Printf("%c\n", char) // Output: ힲ
CSS:
/* CSS content property */
.element::before {
content: "\00D7B2"; /* 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=%ED%9E%B2
MD5:
62034d299d5d184d6aa5488b30789ca2
SHA1:
95c1f5060358810cbe4dfa9fca221ad815f8bb33
Base64:
7Z6y