SkillAgentSearch skills...

Unescaper

Unescape strings with escape sequences written out as literal characters.

Install / Use

/learn @hack-ink/Unescaper
About this skill

Quality Score

0/100

Supported Platforms

Universal

README

<div align="center">

Unescaper

Unescape strings with escape sequences written out as literal characters.

License GPLv3 License MIT Checks GitHub tag (latest by date) GitHub code lines GitHub last commit

</div>

Usage

More Examples

fn main() {
	assert_eq!(unescaper::unescape(r"\u000a").unwrap(), "\n");
	assert_eq!(unescaper::unescape(r"\u{a}").unwrap(), "\n");
	assert_eq!(unescaper::unescape(r"\x0a").unwrap(), "\n");
	assert_eq!(unescaper::unescape(r"\12").unwrap(), "\n");
}

Thanks

The idea comes from unescape-rs.<br> The last commit of that repository was seven years ago.<br> So, I think it is no longer maintained.<br> That's why I created this repository, and I have made some improvements.

View on GitHub
GitHub Stars27
CategoryDevelopment
Updated18d ago
Forks5

Languages

Rust

Security Score

95/100

Audited on Mar 14, 2026

No findings