C:
char c = '\uCE5C';
printf("%c\n", c); // Output: 친
JavaScript:
const char = '\uCE5C';
console.log(char); // Output: 친
Java:
char c = '\uCE5C';
System.out.println(c); // Output: 친
JSON:
{"text": "\uCE5C"} // Value: 친
Python:
char = '\uCE5C'
print(char) # Output: 친
Perl:
my $char = "\x{CE5C}";
print $char; # Output: 친
PHP:
$char = "\x{CE5C}";
echo $char; // Output: 친
Ruby:
char = "\u{CE5C}"
puts char # Output: 친
Rust:
let c = '\u{CE5C}';
println!("{}", c); // Output: 친
Go:
char := '\uCE5C'
fmt.Printf("%c\n", char) // Output: 친
CSS:
/* CSS content property */
.element::before {
content: "\00CE5C"; /* 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=%EC%B9%9C
MD5:
ba0c0ba606aef065162a7e80f464d255
SHA1:
383ac4b5dad141122430f89022d3a3eef5ce0ec6
Base64:
7Lmc