C:
char c = '\uBA85';
printf("%c\n", c); // Output: 명
JavaScript:
const char = '\uBA85';
console.log(char); // Output: 명
Java:
char c = '\uBA85';
System.out.println(c); // Output: 명
JSON:
{"text": "\uBA85"} // Value: 명
Python:
char = '\uBA85'
print(char) # Output: 명
Perl:
my $char = "\x{BA85}";
print $char; # Output: 명
PHP:
$char = "\x{BA85}";
echo $char; // Output: 명
Ruby:
char = "\u{BA85}"
puts char # Output: 명
Rust:
let c = '\u{BA85}';
println!("{}", c); // Output: 명
Go:
char := '\uBA85'
fmt.Printf("%c\n", char) // Output: 명
CSS:
/* CSS content property */
.element::before {
content: "\00BA85"; /* 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%AA%85
MD5:
7b3c6e3d8706ec274cd96fe6f872acc4
SHA1:
5a62fd50d2432e9b24a1f1ababf685220da4f691
Base64:
66qF