C:
char c = '\uB825';
printf("%c\n", c); // Output: 력
JavaScript:
const char = '\uB825';
console.log(char); // Output: 력
Java:
char c = '\uB825';
System.out.println(c); // Output: 력
JSON:
{"text": "\uB825"} // Value: 력
Python:
char = '\uB825'
print(char) # Output: 력
Perl:
my $char = "\x{B825}";
print $char; # Output: 력
PHP:
$char = "\x{B825}";
echo $char; // Output: 력
Ruby:
char = "\u{B825}"
puts char # Output: 력
Rust:
let c = '\u{B825}';
println!("{}", c); // Output: 력
Go:
char := '\uB825'
fmt.Printf("%c\n", char) // Output: 력
CSS:
/* CSS content property */
.element::before {
content: "\00B825"; /* 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%A0%A5
MD5:
c8f821adf3210e7354b9e98f3141aa9d
SHA1:
980c5f3e0c3f8d04d775a468d9c0579b4355f791
Base64:
66Cl