C:
char c = '\uCD95';
printf("%c\n", c); // Output: 축
JavaScript:
const char = '\uCD95';
console.log(char); // Output: 축
Java:
char c = '\uCD95';
System.out.println(c); // Output: 축
JSON:
{"text": "\uCD95"} // Value: 축
Python:
char = '\uCD95'
print(char) # Output: 축
Perl:
my $char = "\x{CD95}";
print $char; # Output: 축
PHP:
$char = "\x{CD95}";
echo $char; // Output: 축
Ruby:
char = "\u{CD95}"
puts char # Output: 축
Rust:
let c = '\u{CD95}';
println!("{}", c); // Output: 축
Go:
char := '\uCD95'
fmt.Printf("%c\n", char) // Output: 축
CSS:
/* CSS content property */
.element::before {
content: "\00CD95"; /* 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%B6%95
MD5:
1eeb5d85202f84c4aa2a7bebc6c9653f
SHA1:
b9b75cbab5dae485c061efb1043df0d4e3401aee
Base64:
7LaV